chore(code): Add description to all crates #2545
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
name: Coverage | |
on: | |
push: | |
branches: main | |
pull_request: | |
paths: | |
- code/** | |
- specs/quint/** | |
- .github/workflows/coverage.yml | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 | |
CARGO_PROFILE_DEV_DEBUG: 1 | |
CARGO_PROFILE_RELEASE_DEBUG: 1 | |
RUST_BACKTRACE: short | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
jobs: | |
integration: | |
name: Integration | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: code | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install Quint | |
run: npm install -g @informalsystems/quint | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
components: llvm-tools-preview | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@cargo-nextest | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Generate code coverage | |
run: | | |
cargo llvm-cov nextest \ | |
--workspace \ | |
--exclude informalsystems-malachitebft-test-mbt \ | |
--ignore-filename-regex crates/cli \ | |
--all-features \ | |
--no-capture \ | |
--ignore-run-fail \ | |
--lcov \ | |
--output-path lcov.info | |
- name: Generate text report | |
run: cargo llvm-cov report | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
if: ${{ !cancelled() }} | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: code/lcov.info | |
flags: integration | |
fail_ci_if_error: false | |
- name: Upload test results to Codecov | |
if: ${{ !cancelled() }} | |
uses: codecov/test-results-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: code/target/nextest/default/junit.xml | |
flags: integration | |
fail_ci_if_error: false | |
mbt: | |
name: MBT | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: code | |
env: | |
CARGO_TERM_COLOR: always | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install Quint | |
run: npm install -g @informalsystems/quint | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
components: llvm-tools-preview | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@cargo-nextest | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Generate code coverage | |
run: cargo llvm-cov nextest -p informalsystems-malachitebft-test-mbt --all-features --lcov --output-path lcov.info | |
- name: Generate text report | |
run: cargo llvm-cov report | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: code/lcov.info | |
flags: mbt | |
fail_ci_if_error: false |