We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd56bb commit 3334e92Copy full SHA for 3334e92
.github/workflows/test.yml
@@ -36,15 +36,15 @@ jobs:
36
strategy:
37
fail-fast: false
38
matrix:
39
- os: [ubuntu-latest, macos-latest]
40
- # disabled because of shaderc dependencies: windows-latest
+ os: [ubuntu-latest, macos-latest, windows-latest]
+ toolchain: [stable, nightly]
41
42
steps:
43
- uses: actions/checkout@v2
44
- name: Install latest nightly
45
uses: actions-rs/toolchain@v1
46
with:
47
- toolchain: nightly
+ toolchain: ${{ matrix.toolchain }}
48
override: true
49
- name: Install xcb libraries
50
if: matrix.os == 'ubuntu-latest'
0 commit comments