diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e733b2f..ac9d2cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -67,11 +67,12 @@ jobs: run: | hatch run tests.py${{ matrix.python-version }}-${{ matrix.airflow-version }}:test-cov - - name: Upload coverage to Github - uses: actions/upload-artifact@v4 + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 with: name: coverage-unit-test-${{ matrix.python-version }}-${{ matrix.airflow-version }} - path: coverage/*.coverage + path: .coverage + token: ${{ secrets.CODECOV_TOKEN }} # Run-Integration-Tests: # needs: Authorize @@ -144,3 +145,8 @@ jobs: fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml + +- name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 + with: + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file