File tree Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 28
28
override : true
29
29
- name : Checkout
30
30
uses : actions/checkout@v3
31
- - name : Copy MSRV Lock
32
- run : make msrv-lock
33
- - name : Build
31
+ - name : Check
34
32
env :
35
33
CARGO_BUILD_TARGET : ${{ matrix.target }}
36
34
run : make check
@@ -136,8 +134,6 @@ jobs:
136
134
curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v4.0.0/wasmtime-v4.0.0-x86_64-linux.tar.xz
137
135
tar xvf wasmtime-v4.0.0-x86_64-linux.tar.xz
138
136
echo `pwd`/wasmtime-v4.0.0-x86_64-linux >> $GITHUB_PATH
139
- - name : Copy MSRV Lock
140
- run : make msrv-lock
141
137
- name : Test
142
138
env :
143
139
CARGO_BUILD_TARGET : ${{ matrix.target }}
Original file line number Diff line number Diff line change 1
1
all : test
2
2
3
3
check :
4
- @cargo check --all-features
4
+ @cargo check --lib -- all-features
5
5
6
6
build :
7
7
@cargo build --all-features
17
17
18
18
check-minver :
19
19
@echo " MINVER CHECK"
20
- @cargo minimal-versions check
21
- @cargo minimal-versions check --all-features
22
- @cargo minimal-versions check --no-default-features
20
+ @cargo minimal-versions check --lib
21
+ @cargo minimal-versions check --lib -- all-features
22
+ @cargo minimal-versions check --lib -- no-default-features
23
23
24
24
format :
25
25
@rustup component add rustfmt 2> /dev/null
33
33
@rustup component add clippy 2> /dev/null
34
34
@cargo clippy --examples --tests
35
35
36
- msrv-lock :
37
- @cargo update -p proptest --precise=1.0.0
38
- @cargo update -p byteorder --precise=1.4.0
39
-
40
36
.PHONY : all doc build check test format format-check lint check-minver msrv-lock
You can’t perform that action at this time.
0 commit comments