From b47d8be75e69eb06ec61155b0bcb6e1bdbb49c52 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Thu, 10 Mar 2022 20:39:00 +0100 Subject: [PATCH] Add macos unit tests job to CI (#28) --- .github/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1237e0e..e9d510d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,3 +37,17 @@ jobs: uses: Swatinem/rust-cache@v1.3.0 - name: Test run: cargo test + test_Macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v1 + - name: Install latest stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - name: Rust Cache + id: rust_cache + uses: Swatinem/rust-cache@v1.3.0 + - name: Test + run: cargo test +