mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-13 04:56:33 +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:
|
||||
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: ./
|
||||
|
|
Loading…
Reference in a new issue