Skip to content

Commit

Permalink
Switch to docker compose v2 in CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcretu committed Apr 3, 2024
1 parent 0d25559 commit e18eae6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
uses: actions/checkout@v4

- name: Build containers
run: docker-compose build --build-arg MIX_ENV=test
run: docker compose build --build-arg MIX_ENV=test

- name: Start containers
run: docker-compose up -d db cache
run: docker compose up -d db cache

- name: Run tests
run: docker-compose run web bash -c 'cd server && mix test'
run: docker compose run web bash -c 'cd server && mix test'

0 comments on commit e18eae6

Please sign in to comment.