update quality.yml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Modified from https://github.com/typst/typst/blob/main/.github/workflows/ci.yml | |
name: Continuous integration | |
on: [push, pull_request, merge_group, workflow_dispatch] | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
RUSTDOCFLAGS: "-Dwarnings" | |
jobs: | |
# This allows us to have one branch protection rule for the full test matrix. | |
# See: https://github.com/orgs/community/discussions/4324 | |
checks: | |
name: Check clippy, formatting, and documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@1.83.0 | |
with: | |
components: clippy, rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo clippy --workspace --all-targets --all-features | |
- run: cargo clippy --workspace --all-targets --no-default-features | |
- run: cargo fmt --check --all | |
- run: cargo doc --workspace --no-deps | |
min-version: | |
name: Check minimum Rust version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@1.80.0 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo check --workspace | |
- uses: Swatinem/rust-cache@v2 |