1 2 3 4 5 6 7 8 9 10 11 12
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - run: cargo fmt -- --check && ./clippy.sh && cargo test && cargo test --benches