build(deps): bump actions-rust-lang/setup-rust-toolchain from 1.8.0 to 1.10.1 #249
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: | |
pull_request: {} | |
merge_group: { types: [checks_requested] } | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/[email protected] | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Rustfmt Check | |
run: cargo fmt --all -- --check | |
clippy: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/[email protected] | |
with: { components: clippy } | |
- uses: giraffate/[email protected] | |
with: | |
reporter: "github-pr-check" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo -Aunknown_lints | |
check-external-types: | |
if: false # rustdoc mismatch currently | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (${{ vars.RUST_VERSION_EXTERNAL_TYPES }}) | |
uses: actions-rust-lang/[email protected] | |
with: | |
toolchain: ${{ vars.RUST_VERSION_EXTERNAL_TYPES }} | |
- name: Install just | |
uses: taiki-e/[email protected] | |
with: | |
tool: just | |
- name: Install cargo-check-external-types | |
uses: taiki-e/[email protected] | |
with: | |
tool: cargo-check-external-types | |
- name: check external types | |
run: just check-external-types-all +${{ vars.RUST_VERSION_EXTERNAL_TYPES }} | |
public-api-diff: | |
name: Public API Diff | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main branch | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.base_ref }} | |
- name: Checkout PR branch | |
uses: actions/checkout@v4 | |
- name: Install Rust (${{ vars.RUST_VERSION_API_DIFF }}) | |
uses: actions-rust-lang/[email protected] | |
with: | |
toolchain: ${{ vars.RUST_VERSION_API_DIFF }} | |
- name: Install cargo-public-api | |
uses: taiki-e/[email protected] | |
with: | |
tool: cargo-public-api | |
- name: Generate API diff | |
run: | | |
for f in $(find -mindepth 2 -maxdepth 2 -name Cargo.toml); do | |
cargo public-api --manifest-path "$f" --simplified diff ${{ github.event.pull_request.base.sha }}..${{ github.sha }} | |
done |