File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,25 @@ jobs:
42
42
steps :
43
43
- uses : actions/checkout@v3
44
44
45
- - name : Install msrv
46
- uses : actions-rs/ toolchain@v1
45
+ - name : Install msrv for lib
46
+ uses : dtolnay/rust- toolchain@master
47
47
with :
48
- profile : minimal
49
48
# MSRV below is documented in Cargo.toml and README.md, please update those if you
50
49
# change this.
51
50
toolchain : 1.60.0
52
- override : true
53
51
54
- - name : Build with msrv
55
- run : cargo +1.60.0 build --lib
52
+ - name : Test lib with msrv
53
+ run : cargo +1.60.0 test --package bindgen
54
+
55
+ - name : Install msrv for cli
56
+ uses : dtolnay/rust-toolchain@master
57
+ with :
58
+ # MSRV below is documented in Cargo.toml and README.md, please update those if you
59
+ # change this.
60
+ toolchain : 1.64.0
61
+
62
+ - name : Test cli with msrv
63
+ run : cargo +1.64.0 build --package bindgen-cli
56
64
57
65
minimal :
58
66
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments