Skip to content

chore: remove nix

chore: remove nix #353

Workflow file for this run

name: "Test Suite"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src, rustfmt, clippy
- run: cargo test --all-features
- run: cargo fmt --check --all --verbose
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo build --release --all --all-targets