Skip to content

Fix CI?

Fix CI? #45

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
tests:
name: Rust 1.56.0
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
- run: cargo test
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: clippy
- run: cargo clippy -- -Dclippy::all
- run: cargo clippy --tests -- -Dclippy::all
- run: cargo clippy --examples -- -Dclippy::all
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
with:
components: rustfmt
- run: cargo fmt --all -- --check
- run: rustfmt --check tests/**/*.rs