Change CI #139
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/**" | |
- "Makefile" | |
pull_request: | |
paths: | |
- "detectors/**" | |
- "test-cases/**" | |
- "Makefile" | |
workflow_dispatch: | |
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 | |
run: | | |
cd detectors && 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 | |
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 clippy | |
run: rustup component add clippy --toolchain nightly | |
- name: Install dylint-link | |
run: cargo install dylint-link | |
- name: Lint Code in Detectors | |
run: | | |
cd detectors && 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 with cargo-udeps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Cache Rust Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo | |
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 rust-src, rustc-dev, and llvm-tools-preview | |
run: rustup component add rust-src rustc-dev llvm-tools-preview | |
- name: Install cargo-udeps | |
run: cargo install cargo-udeps | |
- name: Install dylint-link | |
run: cargo install dylint-link | |
- name: Check Unused Dependencies in Detectors | |
run: | | |
cd detectors | |
cargo +nightly udeps --all-targets | |
- name: Check Unused Dependencies in Test Cases | |
run: | | |
find test-cases -name Cargo.toml -execdir cargo +nightly udeps --all-targets \; |