forked from kube-rs/kube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kube-rs#1658 from nightkr/chore/tarpaulin-1.82
Pin tarpaulin on Rust 1.82
- Loading branch information
Showing
2 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ on: | |
- main | ||
pull_request: | ||
paths: | ||
- '**.rs' | ||
- '**.toml' | ||
- '**.yml' | ||
- "**.rs" | ||
- "**.toml" | ||
- "**.yml" | ||
|
||
jobs: | ||
tarpaulin-codecov: | ||
|
@@ -17,7 +17,8 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install stable toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
# tarpaulin is currently broken for Rust 1.83, see #1657 | ||
uses: dtolnay/[email protected] | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install tarpaulin | ||
uses: taiki-e/install-action@v2 | ||
|
@@ -35,7 +36,8 @@ jobs: | |
|
||
- name: Run cargo-tarpaulin | ||
run: | | ||
rustup run stable cargo tarpaulin -o xml --skip-clean | ||
# tarpaulin is currently broken for Rust 1.83, see #1657 | ||
rustup run 1.82.0 cargo tarpaulin -o xml --skip-clean | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v5 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters