Skip to content

Set up Github Actions workflow #6

Set up Github Actions workflow

Set up Github Actions workflow #6

Workflow file for this run

name: Continuous Integration
on: [push, pull_request, merge_group]
env:
RUSTFLAGS: "-Dwarnings"
RUSTDOCFLAGS: "-Dwarnings"
jobs:
lint:
name: Lint and format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Run `pre-commit` checks
uses: pre-commit/[email protected]
- run: cargo doc --workspace --no-deps
- run: cargo fmt --check --all
test:
name: Test
needs: 'lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --workspace --all-targets --all-features --no-deps
- run: cargo test --workspace --no-run
- run: cargo test --workspace --no-fail-fast