mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-14 13:36:34 +02:00
Merge pull request #18 from dtolnay/ci
Add a macOS and Windows job to CI matrix
This commit is contained in:
commit
e2d87b177d
1 changed files with 11 additions and 2 deletions
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
|
@ -8,12 +8,21 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
install:
|
install:
|
||||||
name: Rust ${{matrix.rust}}
|
name: Rust ${{matrix.rust}} on ${{matrix.name}}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{matrix.os}}-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
name: [Linux]
|
||||||
|
os: [ubuntu]
|
||||||
rust: [nightly, beta, stable]
|
rust: [nightly, beta, stable]
|
||||||
|
include:
|
||||||
|
- name: macOS
|
||||||
|
os: macos
|
||||||
|
rust: nightly
|
||||||
|
- name: Windows
|
||||||
|
os: windows
|
||||||
|
rust: nightly
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: ./
|
- uses: ./
|
||||||
|
|
Loading…
Reference in a new issue