mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Add CI on macOS and Windows
This commit is contained in:
parent
5a7f8b09d3
commit
5185a4df8a
1 changed files with 13 additions and 2 deletions
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue