Skip to content

workflow for easy tests #1

workflow for easy tests

workflow for easy tests #1

Workflow file for this run

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