Skip to content

(main) fix: use unreachable instead of panic for unreachable code #14

(main) fix: use unreachable instead of panic for unreachable code

(main) fix: use unreachable instead of panic for unreachable code #14

Workflow file for this run

name: Coverage
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
env:
CARGO_TERM_COLOR: always
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
- name: Install cargo Binstall
uses: cargo-bins/cargo-binstall@main
- name: Install tarpaulin
run: cargo binstall -y cargo-tarpaulin
- name: Check coverage
run: cargo tarpaulin --doc --tests --fail-under 80