quality lints #1146
This file contains hidden or 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: quality lints | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 18 * * *" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| msrv: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| persist-credentials: false | |
| - name: Install MSRV toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: "1.89" | |
| - name: Check MSRV | |
| run: cargo build --lib --all-features | |
| lints: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| persist-credentials: false | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: install codegen deps | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y cpp-aarch64-linux-gnu binutils-aarch64-linux-gnu | |
| sudo apt-get install -y valgrind | |
| sudo apt-get install -y graphviz | |
| - name: Install stable toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| components: rustfmt, clippy | |
| - name: Install cargo-modules | |
| uses: taiki-e/cache-cargo-install-action@v2 | |
| with: | |
| tool: cargo-modules | |
| - name: Install nightly toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly-2025-02-14 | |
| components: rustfmt | |
| - name: clippy | |
| run: cargo +stable clippy --all-features --all-targets -- --deny warnings | |
| - name: rustfmt | |
| run: cargo +stable fmt --check | |
| - name: rustfmt (nightly) | |
| run: cargo +nightly-2025-02-14 fmt --check -- --config-path=.rustfmt.unstable.toml | |
| - name: check codegen | |
| working-directory: admin/parse-asm | |
| run: | | |
| ./all.sh | |
| git diff --exit-code | |
| - name: check license headers | |
| run: ./admin/scan-license | |
| - name: check module structure | |
| run: ./admin/structure |