Skip to content

test again

test again #27

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
name: cargo fmt -> check -> clippy -> test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal --no-self-update
- run: |
cargo fmt --check
cargo check
cargo clippy --all-targets --all-features -- -D warnings -D clippy::unwrap_used -D clippy::expect_used
cargo test