Add code coverage to CI #102
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: Continuous integration | |
on: [push, pull_request] | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: | |
- 1.63.0 # MSRV | |
- stable | |
- nightly | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v4 | |
- name: "Install ${{ matrix.rust }} toolchain" | |
# https://github.com/dtolnay/rust-toolchain?tab=readme-ov-file#inputs | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: "Use cache" | |
uses: Swatinem/rust-cache@v2 | |
- name: Run tests | |
run: RUST_LOG=debug bash contrib/test.sh | |
Format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v4 | |
- name: "Install nightly toolchain" | |
uses: dtolnay/rust-toolchain@nightly | |
- name: "Use cache" | |
uses: Swatinem/rust-cache@v2 | |
- run: rustup component add rustfmt --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: "Run formatting check" | |
run: cargo fmt --all -- --check | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v4 | |
- name: "Install nightly toolchain" | |
uses: dtolnay/rust-toolchain@nightly | |
- name: "Use cache" | |
uses: Swatinem/rust-cache@v2 | |
- name: "Install clippy" | |
run: rustup component add clippy --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: "Run linting" | |
run: bash contrib/lint.sh | |
Coverage: | |
name: Code coverage | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v4 | |
- name: "Install toolchain" | |
# https://github.com/dtolnay/rust-toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: "Install cargo-llvm-cov" | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: "Generate code coverage for tests" | |
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
- name: "Upload report to coveralls" | |
uses: coverallsapp/github-action@v2 |