File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ - 0.2.x
7
8
8
9
name : CI Tests
9
10
@@ -142,3 +143,21 @@ jobs:
142
143
143
144
- name : Check formating
144
145
run : cargo +stable fmt --all -- --check
146
+ minimal_rust_version :
147
+ name : Check Minimal supported rust version (1.65.0)
148
+ runs-on : ubuntu-latest
149
+ steps :
150
+ - uses : actions/checkout@v3
151
+ - uses : dtolnay/rust-toolchain@stable
152
+ - uses : dtolnay/rust-toolchain@nightly
153
+ - uses : taiki-e/install-action@cargo-hack
154
+ - uses : taiki-e/install-action@cargo-minimal-versions
155
+ - name : Cache cargo registry
156
+ uses : actions/cache@v2
157
+ with :
158
+ path : |
159
+ ~/.cargo/registry
160
+ ~/.cargo/git
161
+ key : minimal_rust_version-cargo-${{ hashFiles('**/Cargo.toml') }}
162
+ - name : Check diesel_derives
163
+ run : cargo +stable minimal-versions check -p diesel_async --all-features
You can’t perform that action at this time.
0 commit comments