refactor: improve error handling #130
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: | |
jobs: | |
test: | |
name: Test crate | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@nightly | |
name: Set up toolchain | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Build crate | |
with: | |
command: build | |
args: --all-targets | |
- uses: actions-rs/cargo@v1 | |
name: Test crate | |
with: | |
command: test | |
coverage: | |
name: Test crate with coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@nightly | |
name: Set up toolchain | |
- uses: taiki-e/install-action@cargo-llvm-cov | |
name: Install cargo llvm-cov | |
- run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
name: Test with coverage | |
- uses: codecov/codecov-action@v3 | |
name: Upload coverage to Codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: lcov.info | |
fail_ci_if_error: true | |
lint: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@master | |
name: Set up toolchain | |
with: | |
toolchain: nightly | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo fmt | |
with: | |
command: fmt | |
args: --all -- --check | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo clippy | |
with: | |
command: clippy | |
args: --all-targets -- -D warnings |