Skip to content

Commit

Permalink
Use docker compose command instead of docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
minamijoyo committed Aug 10, 2024
1 parent 3313edc commit 4833595
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: docker build
run: docker-compose build
run: docker compose build
- name: terraform --version
run: docker-compose run --rm tfschema terraform --version
run: docker compose run --rm tfschema terraform --version
- name: testacc
run: docker-compose run --rm tfschema make testacc
run: docker compose run --rm tfschema make testacc
testacc_opentofu:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand All @@ -61,9 +61,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: docker build
run: docker-compose build
run: docker compose build
- name: opentofu --version
run: |
docker-compose run --rm tfschema tofu --version
docker compose run --rm tfschema tofu --version
- name: testacc
run: docker-compose run --rm tfschema make testacc
run: docker compose run --rm tfschema make testacc

0 comments on commit 4833595

Please sign in to comment.