-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(codecov): add codecov reporting for CI pipeline
- Loading branch information
1 parent
637c356
commit 9008526
Showing
3 changed files
with
106 additions
and
20 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
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
coverage: | ||
status: | ||
patch: off | ||
project: | ||
default: | ||
threshold: null | ||
informational: true | ||
github_checks: | ||
annotations: false | ||
comment: | ||
layout: "reach, files, flags, components" | ||
require_changes: true | ||
component_management: | ||
individual_components: | ||
- component_id: rundler_binary | ||
name: rundler binary | ||
paths: | ||
- bin/** | ||
- component_id: builder | ||
name: builder | ||
paths: | ||
- crates/builder/** | ||
- component_id: dev | ||
name: dev | ||
paths: | ||
- crates/dev/** | ||
- component_id: pool | ||
name: pool | ||
paths: | ||
- crates/pool/** | ||
- component_id: provider | ||
name: provider | ||
paths: | ||
- crates/provider/** | ||
- component_id: rpc | ||
name: rpc | ||
paths: | ||
- crates/rpc/** | ||
- component_id: sim | ||
name: sim | ||
paths: | ||
- crates/sim/** | ||
- component_id: tasks | ||
name: tasks | ||
paths: | ||
- crates/tasks/** | ||
- component_id: types | ||
name: types | ||
paths: | ||
- crates/types/** | ||
- component_id: utils | ||
name: utils | ||
paths: | ||
- crates/utils/** |
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
on: | ||
pull_request: | ||
merge_group: | ||
push: | ||
branches: [main] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
name: unit | ||
jobs: | ||
test: | ||
name: unit-tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: llvm-tools-preview | ||
|
||
- name: Install protobuf | ||
run: sudo apt-get install -y protobuf-compiler | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
|
||
- name: Install latest nextest release | ||
uses: taiki-e/install-action@nextest | ||
|
||
- name: Install cargo-llvm-cov | ||
uses: taiki-e/install-action@cargo-llvm-cov | ||
|
||
- name: Run tests | ||
run: | | ||
cargo llvm-cov nextest --lcov --output-path lcov.info \ | ||
--locked --all-features --workspace | ||
- name: Upload coverage data to codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: lcov.info | ||
flags: unit-tests | ||
|