Skip to content

chores: cargo is now available on github actions #38

chores: cargo is now available on github actions

chores: cargo is now available on github actions #38

Workflow file for this run

name: Run test suite
on: push
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --all -- --check
- run: cargo clippy
- run: cargo build
- run: cargo test
- run: cargo test --no-default-features