-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
8 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 |
---|---|---|
|
@@ -28,10 +28,6 @@ jobs: | |
rustup update stable --no-self-update | ||
rustup target add wasm32-unknown-unknown | ||
- name: Install Tarpaulin | ||
run: | | ||
cargo install cargo-tarpaulin | ||
- name: Check TOML | ||
uses: dprint/[email protected] | ||
|
||
|
@@ -46,6 +42,12 @@ jobs: | |
run: | | ||
cargo clippy --no-deps --all-targets --features runtime-benchmarks --workspace -- --deny warnings | ||
- name: Run cargo-tarpaulin | ||
uses: actions-rs/[email protected] | ||
with: | ||
version: '0.15.0' | ||
args: '--verbose --locked --no-fail-fast --workspace --features runtime-benchmarks --out "Xml"' | ||
- name: Check Build | ||
run: | | ||
SKIP_WASM_BUILD=1 cargo check --release | ||
|
@@ -55,10 +57,6 @@ jobs: | |
pushd node && | ||
cargo check --features=runtime-benchmarks --release | ||
- name: Run Coverage | ||
run: | | ||
cargo tarpaulin --verbose --locked --no-fail-fast --workspace --features runtime-benchmarks --out "Xml" | ||
- name: Upload coverage report | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|