Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update codecov action to v4 #3675

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Run Tox
run: |
tox -e py -- -m "data or not data"
- uses: codecov/codecov-action@v4.1.0
- uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest'
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
43 changes: 0 additions & 43 deletions .github/workflows/ci-pr-coverage.yaml

This file was deleted.

18 changes: 7 additions & 11 deletions .github/workflows/ci-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ jobs:
run: |
tox -e py
mv coverage.xml coverage-${{ matrix.python }}.xml
- name: Store coverage file
uses: actions/upload-artifact@v4
- uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest'
with:
name: coverage-${{ matrix.python }}
path: coverage-${{ matrix.python }}.xml
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage-${{ matrix.python }}.xml
name: py${{ matrix.python }}-${{ matrix.os }}
flags: unittests
fail_ci_if_error: true
verbose: true
integration:
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -68,13 +71,6 @@ jobs:
pip3 install -e .
pip install --upgrade pip
pip install --upgrade setuptools
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v4
with:
name: pr
path: pr/
overwrite: true
- uses: pypa/gh-action-pip-audit@v1.0.8
with:
ignore-vulns: |
Expand Down
Loading