license: fix typos (!) in apache license text #439
Workflow file for this run
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
name: Lint | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
clippy-rustdoc: | |
name: Clippy & Rustdoc | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- channel: stable | |
features: "" | |
- channel: stable | |
features: --features safe | |
- channel: nightly | |
features: --features nightly | |
- channel: stable | |
features: --features zeroize | |
- channel: stable | |
features: --features zeroize-on-drop | |
- channel: nightly | |
features: --features safe,nightly | |
- channel: stable | |
features: --features safe,zeroize | |
- channel: stable | |
features: --features safe,zeroize-on-drop | |
- channel: nightly | |
features: --features nightly,zeroize | |
- channel: nightly | |
features: --features nightly,zeroize-on-drop | |
- channel: nightly | |
features: --all-features | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
run: | | |
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade | |
rustup default ${{ matrix.channel }} | |
- name: Run Clippy | |
run: | |
cargo clippy --all-targets --workspace ${{ matrix.features }} -- -D warnings | |
- name: Run Rustdoc | |
env: | |
RUSTDOCFLAGS: -D warnings | |
run: | |
cargo doc --no-deps --document-private-items --workspace ${{ matrix.features }} |