Skip to content

Update CI and switch to stable Rust #12

Update CI and switch to stable Rust

Update CI and switch to stable Rust #12

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
checks:
name: Checks
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, macos-15]
steps:
- uses: actions/checkout@v2
- run: cargo check --examples --tests --all-targets
- run: cargo fmt --all -- --check --files-with-diff
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo test --all-features