Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: hatch run test:test

- name: Upload coverage
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-unit-py${{ matrix.python-version }}-rs${{ matrix.rust-version }}-${{ matrix.os }}
path: .coverage.*
Expand Down Expand Up @@ -151,13 +151,13 @@ jobs:

- name: Upload logs for debugging
if: ${{ failure() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.test-script }}-py${{ matrix.python-version }}-rs${{ matrix.rust-version }}-${{ matrix.os }}
path: e2e-output

- name: Upload coverage
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-e2e-${{ matrix.test-script }}-py${{ matrix.python-version }}-rs${{ matrix.rust-version }}-${{ matrix.os }}
path: .coverage.*
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
hatch run test:coverage report --fail-under=60

- name: Upload report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
path: htmlcov
name: htmlcov
Expand Down
Loading