From fb8d9971d2111d180bd0e2455538cadb97d60e75 Mon Sep 17 00:00:00 2001 From: pandaadir05 Date: Fri, 21 Nov 2025 12:55:41 +0200 Subject: [PATCH] Add macOS testing to CI/CD pipeline macOS process enumeration is now fully implemented and tested. All 33 tests pass on macOS including platform-specific tests. Added test-macos job to verify macOS functionality in CI. --- .github/workflows/ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c930d46..ff1ee94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,6 +118,35 @@ jobs: run: cargo test --verbose continue-on-error: true + test-macos: + name: Test on macOS + runs-on: macos-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 + + - name: Run tests + run: cargo test --verbose + security: name: Security Audit runs-on: ubuntu-latest