Skip to content

tests suite

tests suite #3

Workflow file for this run

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