Skip to content

CI

CI #32

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 0 * * 0' # Run weekly on Sundays
jobs:
checks:
name: Checks
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
os: [macos-13, ubuntu-20.04, windows-2019]
steps:
- uses: actions/checkout@v3
- run: cargo check --examples --tests
- run: cargo fmt --all -- --check --files-with-diff
- run: cargo clippy --examples --tests -- -D warnings
- run: cargo test
- run: cargo doc --no-deps
env:
RUSTDOCFLAGS: -Dwarnings