Skip to content

Commit

Permalink
Use docker compose instead of docker-compose in the CI config.
Browse files Browse the repository at this point in the history
  • Loading branch information
drcongo committed Aug 14, 2024
1 parent 20b5c56 commit 2c14e6b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ env:
COMPOSE_DOCKER_CLI_BUILD: 1

jobs:

test:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip ci]')"
Expand All @@ -32,7 +31,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: "3.x"

- name: Install EnvKey source
run: VERSION=$(curl https://envkey-releases.s3.amazonaws.com/latest/envkeysource-version.txt) && curl -s https://envkey-releases.s3.amazonaws.com/envkeysource/release_artifacts/$VERSION/install.sh | bash
Expand All @@ -43,8 +42,8 @@ jobs:
run: |
eval $(envkey-source)
echo $GHCR_TOKEN | docker login ghcr.io -u hactarbot3000 --password-stdin
docker-compose -f docker-compose.test.yml pull
docker-compose -f docker-compose.test.yml run --rm web
docker compose -f docker-compose.test.yml pull
docker compose -f docker-compose.test.yml run --rm web
- name: Report coverage to Codacy
env:
Expand Down

0 comments on commit 2c14e6b

Please sign in to comment.