Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ jobs:
with: { tool: 'just,cargo-binstall' }
- run: just ci-test

test-macos:
name: Test (macOS)
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
with: { submodules: recursive }
- if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
uses: Swatinem/rust-cache@v2
Comment thread
yutannihilation marked this conversation as resolved.

test-nightly:
name: Nightly-specific tests
runs-on: ubuntu-latest
Expand Down Expand Up @@ -118,7 +127,7 @@ jobs:
# This job checks if any of the previous jobs failed or were canceled.
# This approach also allows some jobs to be skipped if they are not needed.
ci-passed:
needs: [ test, test-nightly, test-msrv, fuzz ]
needs: [ test, test-macos, test-nightly, test-msrv, fuzz ]
if: always()
runs-on: ubuntu-latest
steps:
Expand Down
Loading