diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2045a77..6a367c8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ on: types: [opened, synchronize] jobs: - testing: + linux: runs-on: ubuntu-latest container: @@ -78,3 +78,22 @@ jobs: run: | . "$HOME/.cargo/env" RUST_BACKTRACE=1 cargo test + + macos: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Build + shell: bash -eo pipefail {0} + run: | + cargo build + + - name: Test + shell: bash -eo pipefail {0} + run: | + RUST_BACKTRACE=1 cargo test