-
Notifications
You must be signed in to change notification settings - Fork 27
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
1 parent
55cf0e0
commit 59ab7ee
Showing
1 changed file
with
5 additions
and
9 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 |
---|---|---|
|
@@ -56,25 +56,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install LLVM Tools | ||
run: rustup component add llvm-tools | ||
|
||
- name: Install cargo-llvm-cov and cargo-make | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-llvm-cov,cargo-make | ||
- name: Install cargo-llvm-cov | ||
uses: taiki-e/install-action@cargo-llvm-cov | ||
|
||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
|
||
- name: Generate coverage | ||
run: cargo make coverage | ||
- name: Generate code coverage | ||
run: cargo llvm-cov --all-features --workspace --codecov --output-path codecov.json | ||
|
||
- name: Upload to codecov.io | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: codecov.json | ||
fail_ci_if_error: true | ||
|
||
contract-integration-tests: | ||
|