Skip to content

Use github actions

Use github actions #3

Workflow file for this run

name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- run: cargo clippy
- run: cargo fmt -- --check
- run: cargo test --all-features