Skip to content

Commit

Permalink
Migrate docker compose calls (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shpota authored Aug 9, 2024
1 parent 6a8bbb2 commit 117c863
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Generate application
run: go run main.go init --db ${{ matrix.db }} --frontend ${{ matrix.frontend }} app
- name: Start the application
run: cd app && docker-compose up -d
run: cd app && docker compose up -d
- name: Check availability of backend
run: timeout 60 bash -c 'until curl -s localhost:8080/api/technologies | grep Go > /dev/null; do sleep 1; done'
- name: Check availability of frontend
Expand Down Expand Up @@ -52,5 +52,5 @@ jobs:
EOF
node index.js
- name: Stop application
run: cd app && docker-compose down
run: cd app && docker compose down
if: always()

0 comments on commit 117c863

Please sign in to comment.