Skip to content

Commit

Permalink
Run CI unit tests on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenengler committed Jun 23, 2024
1 parent 41364a8 commit 071fb2d
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
types: [opened, synchronize]

jobs:
testing:
linux:
runs-on: ubuntu-latest

container:
Expand Down Expand Up @@ -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

0 comments on commit 071fb2d

Please sign in to comment.