Skip to content

ci: add github action #1

ci: add github action

ci: add github action #1

Workflow file for this run

name: test suite
on: [push, pull_request]
jobs:
test:
name: Build and Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Build and test
run: cargo test --all-features
- name: Lint
run: cargo clippy -- -Dwarnings