File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
test :
10
- name : Rust nightly
11
- runs-on : ubuntu-latest
10
+ name : Rust nightly ${{matrix.os == 'windows' && '(windows)' || ''}}
11
+ runs-on : ${{matrix.os}}-latest
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ os : [ubuntu, windows]
12
16
steps :
13
17
- uses : actions/checkout@v2
14
18
- uses : dtolnay/rust-toolchain@nightly
@@ -19,12 +23,16 @@ jobs:
19
23
- run : cargo test --features unbounded_depth --tests -- --skip ui --exact
20
24
21
25
build :
22
- name : Rust ${{matrix.rust}}
23
- runs-on : ubuntu -latest
26
+ name : Rust ${{matrix.rust}} ${{matrix.os == 'windows' && '(windows)' || ''}}
27
+ runs-on : ${{matrix.os}} -latest
24
28
strategy :
25
29
fail-fast : false
26
30
matrix :
27
31
rust : [beta, stable, 1.31.0]
32
+ os : [ubuntu]
33
+ include :
34
+ - rust : stable
35
+ os : windows
28
36
steps :
29
37
- uses : actions/checkout@v2
30
38
- uses : dtolnay/rust-toolchain@master
You can’t perform that action at this time.
0 commit comments