From 3ab1bbaea17de3d8078ad3b5246c664e16b7a736 Mon Sep 17 00:00:00 2001 From: cry-inc Date: Fri, 25 Oct 2024 14:12:48 +0200 Subject: [PATCH] Added MacOS build --- .github/workflows/ci.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 73bd97a..91c612c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,3 +33,16 @@ jobs: run: cargo build --release --all - name: Execute Tests run: cargo test --release --all + Mac: + runs-on: macos-14 + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Update Rust + run: rustup toolchain install stable --profile minimal --no-self-update + - name: List Targets + run: rustup target list + - name: Release Build + run: cargo build --release --all + - name: Execute Tests + run: cargo test --release --all