File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [ staging, trying, master ]
4
+ pull_request :
5
+
6
+ name : Test Suite
7
+
8
+ jobs :
9
+ ci-linux :
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ matrix :
13
+ rust : [stable]
14
+
15
+ # The default target we're compiling on and for
16
+ TARGET : [x86_64-unknown-linux-gnu]
17
+
18
+ include :
19
+ - rust : 1.36.0 # Higher than the MSRV due to dependencies.
20
+
21
+ # Test nightly but don't fail
22
+ - rust : nightly
23
+ experimental : true
24
+
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - uses : actions-rs/toolchain@v1
28
+ with :
29
+ profile : minimal
30
+ toolchain : ${{ matrix.rust }}
31
+ target : ${{ matrix.TARGET }}
32
+ override : true
33
+ - uses : actions-rs/cargo@v1
34
+ with :
35
+ command : test
36
+ args : --target=${{ matrix.TARGET }}
You can’t perform that action at this time.
0 commit comments