Change CI #152
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: General Rust | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "detectors/**" | |
- "test-cases/**" | |
pull_request: | |
paths: | |
- "detectors/**" | |
- "test-cases/**" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
format: | |
name: Check Rust Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Update Rust Toolchain | |
run: rustup update | |
- name: Install Rust nightly | |
run: rustup install nightly --profile minimal | |
- name: Install rustfmt | |
run: rustup component add rustfmt --toolchain nightly | |
- name: Check Formatting in Detectors | |
working-directory: detectors | |
run: cargo +nightly fmt -- --check -v | |
- name: Check Formatting in Test Cases | |
run: find test-cases -name Cargo.toml -execdir cargo +nightly fmt -- --check -v \; | |
clippy: | |
name: Lint with Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Cache Rust Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo | |
~/.rustup | |
**/target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Update Rust Toolchain | |
run: rustup update | |
- name: Install Rust nightly | |
run: rustup install nightly --profile minimal | |
- name: Install dylint-link | |
run: cargo install dylint-link --force | |
- name: Install clippy | |
run: rustup component add clippy --toolchain nightly | |
- name: Lint Code in Detectors | |
working-directory: detectors | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Lint Code in Test Cases | |
run: find test-cases -name Cargo.toml -execdir cargo clippy --all-targets --all-features -- -D warnings \; | |
udeps: | |
name: Check Unused Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Cache Rust Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo | |
~/.rustup | |
**/target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Update Rust Toolchain | |
run: rustup update | |
- name: Install Rust nightly | |
run: rustup install nightly --profile minimal | |
- name: Install dylint-link | |
run: cargo install dylint-link --force | |
- name: Install cargo-udeps | |
run: cargo install cargo-udeps --force | |
- name: Check Unused Dependencies in Test Cases | |
run: | | |
set -e | |
find test-cases -name Cargo.toml -execdir bash -c 'cargo +nightly udeps --all-targets' \; |