mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2025-12-27 01:54:01 -05:00
Add a macOS and Windows job to CI matrix
This commit is contained in:
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
@@ -8,12 +8,21 @@ on:
|
||||
|
||||
jobs:
|
||||
install:
|
||||
name: Rust ${{matrix.rust}}
|
||||
runs-on: ubuntu-latest
|
||||
name: Rust ${{matrix.rust}} on ${{matrix.name}}
|
||||
runs-on: ${{matrix.os}}-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
name: [Linux]
|
||||
os: [ubuntu]
|
||||
rust: [nightly, beta, stable]
|
||||
include:
|
||||
- name: macOS
|
||||
os: macos
|
||||
rust: nightly
|
||||
- name: Windows
|
||||
os: windows
|
||||
rust: nightly
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: ./
|
||||
|
||||
Reference in New Issue
Block a user