chore: simplify auth test utils #735
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
- releases/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lints: | |
name: Lints | |
runs-on: blacksmith-4vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.81.0 | |
components: rustfmt, clippy | |
- name: Rust Cache | |
uses: useblacksmith/rust-cache@v3 | |
with: | |
shared-key: "cache" | |
- name: Install cargo-sort | |
uses: baptiste0928/cargo-install@v2 | |
with: | |
crate: cargo-sort | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Run cargo sort | |
run: cargo-sort --workspace --check --check-format | |
- name: Run cargo clippy (no features) | |
run: cargo clippy --workspace --no-default-features --allow-dirty --fix -- -D warnings | |
- name: Run cargo clippy (all features) | |
run: cargo clippy --workspace --all-features --allow-dirty --fix -- -D warnings | |
- name: Run cargo doc | |
run: cargo doc --no-deps --workspace | |
- name: Check for uncommitted changes | |
run: git diff --exit-code |