7
7
8
8
name : CI
9
9
10
+ env :
11
+ RUSTFLAGS : ' --deny warnings'
12
+
10
13
jobs :
11
14
ci-linux :
12
15
name : CI
15
18
strategy :
16
19
matrix :
17
20
# All published crates must build on stable.
18
- rust : [stable, beta, 1.46.0 ]
21
+ rust : [stable, beta, 1.56.1 ]
19
22
20
23
# The default target we're compiling on and for.
21
24
TARGET : [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl]
@@ -27,26 +30,13 @@ jobs:
27
30
TARGET : x86_64-unknown-linux-gnu
28
31
29
32
steps :
30
- - uses : actions/checkout@v2
31
- - uses : actions-rs/ toolchain@v1
33
+ - uses : actions/checkout@v3
34
+ - uses : dtolnay/rust- toolchain@master
32
35
with :
33
- profile : minimal
34
36
toolchain : ${{ matrix.rust }}
35
- target : ${{ matrix.TARGET }}
36
- override : true
37
- - uses : actions-rs/cargo@v1
38
- with :
39
- command : check
40
- args : --target=${{ matrix.TARGET }}
41
- - uses : actions-rs/cargo@v1
42
- with :
43
- command : build
44
- args : --target=${{ matrix.TARGET }}
45
- - uses : actions-rs/cargo@v1
46
- with :
47
- command : test
48
- args : --target=${{ matrix.TARGET }}
49
- - uses : actions-rs/cargo@v1
50
- with :
51
- command : build
52
- args : --target=${{ matrix.TARGET }} --examples
37
+ target : ${{ matrix.target }}
38
+
39
+ - run : cargo check --target=${{ matrix.TARGET }}
40
+ - run : cargo build --target=${{ matrix.TARGET }}
41
+ - run : cargo test --target=${{ matrix.TARGET }}
42
+ - run : cargo build --target=${{ matrix.TARGET }} --examples
0 commit comments