diff --git a/.github/workflows/branch.yaml b/.github/workflows/branch.yaml index 832ba08..aa8ec63 100644 --- a/.github/workflows/branch.yaml +++ b/.github/workflows/branch.yaml @@ -12,7 +12,6 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - - uses: codecov/codecov-action@v1 - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} @@ -24,6 +23,8 @@ jobs: run: poetry install - name: Run tests run: poetry run pytest --cov=./ --cov-report=xml + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v1 code-quality: strategy: fail-fast: false