Skip to content

Commit

Permalink
Merge pull request #2 from dtolnay/xplat
Browse files Browse the repository at this point in the history
Add CI on macOS and Windows
  • Loading branch information
dtolnay committed May 14, 2024
2 parents 9f73d5c + 0cf59bc commit 5c1430d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,25 @@ jobs:
if: matrix.rust == 'nightly'
- run: cargo check

xplat:
name: ${{matrix.name}}
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
include:
- name: macOS
os: macos
- name: Windows
os: windows
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check

doc:
name: Documentation
needs: pre_ci
Expand Down

0 comments on commit 5c1430d

Please sign in to comment.