Skip to content

Commit

Permalink
Switch to Docker Compose V2 in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrykonchin committed Aug 18, 2024
1 parent aa85542 commit af0ae79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ jobs:

- name: Start dynamodb-local
run: |
docker-compose up -d
docker compose up -d
- name: Run RSpec tests
run: |
bundle exec rspec
- name: Stop dynamodb-local
run: |
docker-compose down
docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ jobs:

- name: Start dynamodb-local
run: |
docker-compose up -d
docker compose up -d
- name: Run RSpec tests
run: |
bundle exec rspec
- name: Stop dynamodb-local
run: |
docker-compose down
docker compose down
- name: CodeClimate Post-build Notification
run: cc-test-reporter after-build
Expand Down

0 comments on commit af0ae79

Please sign in to comment.