Skip to content

thiserror errors instead of internal unwrap/except on user errors (#45) #18

thiserror errors instead of internal unwrap/except on user errors (#45)

thiserror errors instead of internal unwrap/except on user errors (#45) #18

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Rust Format and Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt -- --check
- run: cargo clippy -- -D warnings
- run: cargo clippy --all-features -- -D warnings