Skip to content

Update Clippy lints configuration and CI workflow #20

Update Clippy lints configuration and CI workflow

Update Clippy lints configuration and CI workflow #20

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Install nextest
shell: bash
run: |
curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
- run: cargo fmt --all --check
- run: cargo check --workspace
- run: cargo clippy --all-targets --all-features
- run: cargo nextest run -E 'all() - package(calendar)'