ci: add code coverage #1
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check formatting | |
run: cargo +stable fmt --all -- --check | |
check: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: "./.github/actions/init" | |
- name: Check Build | |
run: | | |
cargo check --release --locked --features=runtime-benchmarks | |
clippy: | |
needs: lint | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
env: | |
SKIP_WASM_BUILD: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: "./.github/actions/init" | |
- name: Annotate with Clippy warnings | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --release --locked --features=runtime-benchmarks | |
test: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: "./.github/actions/init" | |
- name: Run tests | |
run: cargo test --release --locked --verbose --all | |
- name: Check try-runtime build | |
run: cargo check --release --features=try-runtime | |
coverage: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: "./.github/actions/init" | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Generate code coverage | |
run: cargo llvm-cov --all-features --workspace --lib --bins --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 |