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
@@ -143,3 +144,21 @@ jobs:
143
144
144
145
- name : Check formating
145
146
run : cargo +stable fmt --all -- --check
147
+ minimal_rust_version :
148
+ name : Check Minimal supported rust version (1.65.0)
149
+ runs-on : ubuntu-latest
150
+ steps :
151
+ - uses : actions/checkout@v3
152
+ - uses : dtolnay/rust-toolchain@stable
153
+ - uses : dtolnay/rust-toolchain@nightly
154
+ - uses : taiki-e/install-action@cargo-hack
155
+ - uses : taiki-e/install-action@cargo-minimal-versions
156
+ - name : Cache cargo registry
157
+ uses : actions/cache@v2
158
+ with :
159
+ path : |
160
+ ~/.cargo/registry
161
+ ~/.cargo/git
162
+ key : minimal_rust_version-cargo-${{ hashFiles('**/Cargo.toml') }}
163
+ - name : Check diesel_derives
164
+ run : cargo +stable minimal-versions check -p diesel_async --all-features
You can’t perform that action at this time.
0 commit comments