Clippy #3
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: Build Linux | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'rustfmt.toml' | |
- 'config/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'rustfmt.toml' | |
- 'config/**' | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust nightly | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: clippy, rustfmt | |
- name: Cache cargo | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- name: Run cargo build | |
run: cargo build --verbose | |
- name: Run cargo test | |
run: cargo test --verbose -- --nocapture --test-threads=1 | |
- name: Run cargo clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Run cargo fmt | |
run: cargo +nightly fmt --all -- --check |