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

chore(deps): bump codecov/codecov-action from 3 to 4 #114

Closed
Closed
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/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable

Check warning on line 17 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (rustup)
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov

Check warning on line 19 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (taiki)
- run: cargo test --workspace --all-features --all-targets
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: lcov.info
fail_ci_if_error: true
Expand All @@ -31,8 +31,8 @@
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable

Check warning on line 34 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (rustup)
- name: Check
run: cargo clippy --workspace --all-targets --all-features -- -D warnings

Check warning on line 36 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (clippy)
- name: rustfmt

Check warning on line 37 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (rustfmt)
run: cargo fmt --all --check
Loading