diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0c6e37a..12c4c20 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -2,7 +2,7 @@ name: CI/CD Pipeline on: push: - branches: [main] + branches: ['**'] tags: ['v*'] pull_request: @@ -27,8 +27,7 @@ jobs: run: poetry run ruff check . - name: Run Tests with Coverage - run: poetry run pytest --cov=my_project --cov-report=term-missing --cov-fail-under=80 - + run: poetry run pytest --cov --cov-report=term-missing --cov-fail-under=80 publish-container: needs: test-and-lint if: startsWith(github.ref, 'refs/tags/v')