Run CI on more platforms
This commit is contained in:
parent
51b4f8316a
commit
8ba1b441e5
|
@ -8,8 +8,8 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
install:
|
install:
|
||||||
name: Rust ${{matrix.rust}}
|
name: Rust ${{matrix.rust}} ${{matrix.os}}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{matrix.os}}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -23,6 +23,11 @@ jobs:
|
||||||
"beta",
|
"beta",
|
||||||
"stable",
|
"stable",
|
||||||
]
|
]
|
||||||
|
os: [
|
||||||
|
"ubuntu-latest",
|
||||||
|
"windows-latest",
|
||||||
|
"macos-latest",
|
||||||
|
]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
# Test toolchain file support
|
# Test toolchain file support
|
||||||
|
|
Loading…
Reference in New Issue