Skip to content

Commit

Permalink
Merge pull request #7 from Isawan/credential-helper
Browse files Browse the repository at this point in the history
Updated docker-compose to use docker compose
  • Loading branch information
Isawan authored Aug 6, 2023
2 parents 4670b3f + de70b06 commit 8a100e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ jobs:
- name: Build
run: cargo build --verbose
- name: Start containers
run: docker-compose up -d --wait
run: docker compose up -d
- name: Install self signed certificate
run: sudo cp ./resources/test/certs/cert.pem /usr/local/share/ca-certificates/localhost.crt && sudo update-ca-certificates
run: |
until [ -f ./resources/test/certs/cert.pem ]; do sleep 1; done
sudo cp ./resources/test/certs/cert.pem /usr/local/share/ca-certificates/localhost.crt && sudo update-ca-certificates
timeout-minutes: 1
- name: Show containers
run: docker-compose ps
- name: Run tests
Expand Down

0 comments on commit 8a100e7

Please sign in to comment.