Skip to content
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/bindings-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
[[ "$CRATE_VERSION" == "$PY_VERSION" ]] || exit 1
# Include the dist/ in our artefacts.
- name: upload python-pathrs bindings dist/
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: python-${{ matrix.python-version }}-pathrs-dist
path: contrib/bindings/python/dist/
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- run: cargo doc --document-private-items --workspace --all-features
- name: upload docs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: rustdoc
path: target/doc
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
-F "${{ env.FEATURES }}" \
--archive-file nextest-pathrs-${{ matrix.run-as }}.tar.zst
- name: upload nextest archive
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: nextest-archive-${{ matrix.run-as }}
path: nextest-pathrs-${{ matrix.run-as }}.tar.zst
Expand All @@ -208,7 +208,7 @@ jobs:
- uses: taiki-e/install-action@cargo-llvm-cov
- run: make test-rust-doctest
- name: upload rust coverage (artifact)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: profraw-${{ github.job }}-${{ strategy.job-index }}
path: "target/llvm-cov-target/*.profraw"
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
"${{ env.NEXTEST_PATTERN_SPEC }}"

- name: upload rust coverage (artifact)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: profraw-${{ github.job }}-${{ strategy.job-index }}
path: "target/llvm-cov-target/*.profraw"
Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
find "${{ steps.rust-coverage.outputs.download-path }}" -name '*.profraw' -type f >"$profraw_list"
rust-profdata merge --sparse -f "$profraw_list" -o ./target/llvm-cov-target/libpathrs-combined.profraw
- name: upload merged rust coverage
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: libpathrs-combined-profraw
path: target/llvm-cov-target/libpathrs-combined.profraw
Expand Down Expand Up @@ -396,7 +396,7 @@ jobs:
- name: generate coverage html
run: cargo llvm-cov report --html
- name: upload coverage html
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: target/llvm-cov/html
Expand Down
Loading