File tree 1 file changed +23
-0
lines changed 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 58
58
run : cargo test -p examples --example crd_api --no-default-features --features=deprecated,kubederive,native-tls
59
59
if : matrix.os == 'ubuntu-latest'
60
60
61
+ check-msrv :
62
+ # Run `cargo check` on our minimum supported Rust version
63
+ runs-on : ubuntu-latest
64
+ steps :
65
+ - uses : actions/checkout@main
66
+ - name : Find MSRV
67
+ id : msrv
68
+ run : |
69
+ MSRV=$(grep MSRV README.md | grep -oE "[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")
70
+ echo $MSRV
71
+ echo ::set-output name=msrv::${MSRV}
72
+ - uses : actions-rs/toolchain@v1
73
+ with :
74
+ toolchain : ${{ steps.msrv.outputs.msrv }}
75
+ profile : minimal
76
+ override : true
77
+ - uses : Swatinem/rust-cache@v1
78
+ - name : Check
79
+ uses : actions-rs/cargo@v1
80
+ with :
81
+ command : check
82
+ args : --all
83
+
61
84
integration :
62
85
# Integration tests are linux only
63
86
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments