Fix spelling error in Documentation and Improve Readability in HotShot Networking Code #5822
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: | |
- 'develop' | |
- 'main' | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ (github.ref == 'refs/heads/main' && github.run_number) || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
verify-workspace-hack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Install cargo-hakari from crates.io | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: cargo-hakari | |
- name: Run cargo-hakari | |
run: | | |
cargo hakari generate --diff | |
clippy: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Install Rust | |
uses: mkroening/rust-toolchain-toml@main | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
with: | |
shared-key: "lint" | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- uses: taiki-e/install-action@just | |
- name: Run clippy | |
run: | | |
just clippy | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Install Rust | |
uses: mkroening/rust-toolchain-toml@main | |
- uses: taiki-e/install-action@just | |
- name: Check rustfmt | |
run: | | |
just fmt_check |