File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
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
31
33
- name : Build
32
34
env :
33
35
CARGO_BUILD_TARGET : ${{ matrix.target }}
76
78
run : |
77
79
sudo apt-get update
78
80
sudo apt-get install gcc-multilib
81
+ - name : Copy MSRV Lock
82
+ run : make msrv-lock
79
83
- name : Test
80
84
env :
81
85
CARGO_BUILD_TARGET : ${{ matrix.target }}
@@ -124,6 +128,8 @@ jobs:
124
128
curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v4.0.0/wasmtime-v4.0.0-x86_64-linux.tar.xz
125
129
tar xvf wasmtime-v4.0.0-x86_64-linux.tar.xz
126
130
echo `pwd`/wasmtime-v4.0.0-x86_64-linux >> $GITHUB_PATH
131
+ - name : Copy MSRV Lock
132
+ run : make msrv-lock
127
133
- name : Test
128
134
env :
129
135
CARGO_BUILD_TARGET : ${{ matrix.target }}
Original file line number Diff line number Diff line change 33
33
@rustup component add clippy 2> /dev/null
34
34
@cargo clippy --examples --tests
35
35
36
- .PHONY : all doc build check test format format-check lint check-minver
36
+ msrv-lock :
37
+ @cargo update -p proptest --precise=1.0.0
38
+
39
+ .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