update deps #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21 | |
- name: "Setup Passbolt" | |
run: | | |
git clone https://github.com/passbolt/passbolt_docker.git ../passbolt_docker | |
cd ../passbolt_docker | |
docker compose -f docker-compose/docker-compose-ce.yaml up -d | |
docker ps -a | |
- name: "Test" | |
run: | | |
docker exec docker-compose-passbolt-1 sh -c '/usr/bin/wait-for.sh -t 30 localhost:443' | |
output=$(docker exec docker-compose-passbolt-1 sh -c 'su -m -c "/usr/share/php/passbolt/bin/cake \ | |
passbolt register_user \ | |
-u your@email.com \ | |
-f yourname \ | |
-l surname \ | |
-r admin" -s /bin/sh www-data') | |
export REG_URL=$(echo ${output##* your mailbox or here: } | tr -d '\n') | |
echo "Register with $REG_URL" | |
go test -v ./... |