diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index e6ee6fc..9c0bd44 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -9,4 +9,4 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run containers - run: docker-compose -f docker/docker-compose.yaml up --abort-on-container-exit + run: docker compose -f docker/docker-compose.yaml up --abort-on-container-exit diff --git a/Makefile b/Makefile index aae1a75..f488cdb 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ clean-build: ## remove build artifacts rm -fr dist/ rm -fr .eggs/ find . -name '*.egg-info' -exec rm -fr {} + - find . -name '*.egg' -exec rm -f {} + + find . -name '*.egg' -exec rm -rf {} + clean-pyc: ## remove Python file artifacts @echo cleaning pyc file artifacts ...