diff options
author | 2024-04-02 21:38:51 +0200 | |
---|---|---|
committer | 2024-04-02 21:38:51 +0200 | |
commit | ec5e97228ae5eac1ae8a4b234c8639d138da9c95 (patch) | |
tree | 1a7d5618cd636412eb8a391571ae90d1b081c2bf | |
parent | Merge pull request #1280 from python-discord/set-elidable-on-run-python-opera... (diff) | |
parent | Replace `docker-compose` with `docker compose` in action (diff) |
Merge pull request #1290 from python-discord/docker-compose-to-docker-compose
Replace `docker-compose` with `docker compose` in action
-rw-r--r-- | .github/workflows/lint-test.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 3a25cf70..9d844d64 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -18,8 +18,8 @@ jobs: # Start the database early to give it a chance to get ready before # we start running tests. - - name: Run database using docker-compose - run: docker-compose run -d -p 7777:5432 --name pydis_web postgres + - name: Run database using docker compose + run: docker compose run -d -p 7777:5432 --name pydis_web postgres # We will not run `flake8` here, as we will use a separate flake8 # action. @@ -50,8 +50,8 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} file: ./coverage.lcov - - name: Tear down docker-compose containers - run: docker-compose stop + - name: Tear down docker compose containers + run: docker compose stop if: ${{ always() }} # Prepare the Pull Request Payload artifact. If this fails, we |