Skip to content

feat: add unit tests, fix clippy warnings, and update CI #7

feat: add unit tests, fix clippy warnings, and update CI

feat: add unit tests, fix clippy warnings, and update CI #7

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
os:
- windows-latest
- macos-latest
rust:
- stable
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --all-targets
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test --lib