Add CI on macOS and Windows

This commit is contained in:
David Tolnay 2024-03-29 13:44:15 -07:00
parent 5a7f8b09d3
commit 5185a4df8a
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -31,14 +31,25 @@ jobs:
- run: diff tests/lib.expand.rs expand.rs
build:
name: Rust ${{matrix.rust}}
name: ${{matrix.name || format('Rust {0}', matrix.rust)}}
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.74.0]
os: [ubuntu]
include:
- name: macOS
os: macos
rust: nightly
- name: Windows (gnu)
os: windows
rust: nightly-x86_64-pc-windows-gnu
- name: Windows (msvc)
os: windows
rust: nightly-x86_64-pc-windows-msvc
timeout-minutes: 45
steps:
- uses: actions/checkout@v4