name: CI/CD Pipeline on: push: branches: [ main, develop ] pull_request: branches: [ main ] env: CARGO_TERM_COLOR: always RUST_BACKTRACE: 1 jobs: format: name: Format Check runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Install Rust uses: dtolnay/rust-toolchain@stable with: components: rustfmt - name: Check formatting run: cargo fmt --all -- --check clippy: name: Clippy Lints runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Install YARA run: sudo apt-get update && sudo apt-get install -y libyara-dev - name: Install Rust uses: dtolnay/rust-toolchain@stable with: components: clippy - name: Cache cargo uses: actions/cache@v4 with: path: | ~/.cargo/registry ~/.cargo/git target key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} restore-keys: | ${{ runner.os }}-cargo- - name: Run clippy run: cargo clippy --all-targets -- -A clippy::too_many_arguments -A clippy::type_complexity -A dead_code test-linux: name: Test on Linux runs-on: ubuntu-latest needs: [format, clippy] steps: - name: Checkout uses: actions/checkout@v4 - name: Install YARA run: sudo apt-get update && sudo apt-get install -y libyara-dev - name: Install Rust uses: dtolnay/rust-toolchain@stable - name: Cache cargo uses: actions/cache@v4 with: path: | ~/.cargo/registry ~/.cargo/git target key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }} restore-keys: | ${{ runner.os }}-cargo-test- ${{ runner.os }}-cargo- - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose test-windows: name: Test on Windows runs-on: windows-latest needs: [format, clippy] steps: - name: Checkout uses: actions/checkout@v4 - name: Install Rust uses: dtolnay/rust-toolchain@stable - name: Cache cargo uses: actions/cache@v4 with: path: | ~\.cargo\registry ~\.cargo\git target key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }} restore-keys: | ${{ runner.os }}-cargo-test- ${{ runner.os }}-cargo- - name: Build run: cargo build --verbose continue-on-error: true - name: Run tests run: cargo test --verbose continue-on-error: true security: name: Security Audit runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Install YARA run: sudo apt-get update && sudo apt-get install -y libyara-dev - name: Run cargo-deny uses: EmbarkStudios/cargo-deny-action@v1 with: log-level: warn command: check