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:
|
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: ./
|
||||||
|
|||||||
Reference in New Issue
Block a user