From 5c4d8bc014da61931b93a44b011da52826831ba7 Mon Sep 17 00:00:00 2001 From: Ranjeeth Mahankali Date: Wed, 12 Mar 2025 21:35:57 -0400 Subject: [PATCH] Add ci for macos after testing locally --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b802d3..7112c52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,3 +38,17 @@ jobs: run: cargo clippy --all-targets --all-features -- -D warnings - name: Run tests run: cargo test --all-features --verbose + macos: + runs-on: macos-latest + steps: + - name: Update Rust + run: rustup update stable + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose --all-targets --all-features + - name: Check formatting + run: cargo fmt -- --check + - name: Run Clippy + run: cargo clippy --all-targets --all-features -- -D warnings + - name: Run tests + run: cargo test --all-features --verbose