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 2828 override : true
2929 - name : Checkout
3030 uses : actions/checkout@v3
31- - name : Copy MSRV Lock
32- run : make msrv-lock
33- - name : Build
31+ - name : Check
3432 env :
3533 CARGO_BUILD_TARGET : ${{ matrix.target }}
3634 run : make check
@@ -136,8 +134,6 @@ jobs:
136134 curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v4.0.0/wasmtime-v4.0.0-x86_64-linux.tar.xz
137135 tar xvf wasmtime-v4.0.0-x86_64-linux.tar.xz
138136 echo `pwd`/wasmtime-v4.0.0-x86_64-linux >> $GITHUB_PATH
139- - name : Copy MSRV Lock
140- run : make msrv-lock
141137 - name : Test
142138 env :
143139 CARGO_BUILD_TARGET : ${{ matrix.target }}
Original file line number Diff line number Diff line change 11all : test
22
33check :
4- @cargo check --all-features
4+ @cargo check --lib -- all-features
55
66build :
77 @cargo build --all-features
1717
1818check-minver :
1919 @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
2323
2424format :
2525 @rustup component add rustfmt 2> /dev/null
3333 @rustup component add clippy 2> /dev/null
3434 @cargo clippy --examples --tests
3535
36- msrv-lock :
37- @cargo update -p proptest --precise=1.0.0
38- @cargo update -p byteorder --precise=1.4.0
39-
4036.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