We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53fba7 commit 04f5b84Copy full SHA for 04f5b84
1 file changed
.github/workflows/ci.yml
@@ -249,3 +249,27 @@ jobs:
249
250
- name: "Run Tests"
251
run: meson test -C "./build"
252
+
253
+ #
254
+ # A development build using the MSRV. To avoid updating our own container
255
+ # images with that version all the time, use the official images for it.
256
+ # This means, we cannot rely on any other utilities to be present, so just
257
+ # run a straight cargo build.
258
259
+ ext_msrv:
260
+ name: "Ext: msrv @ rust:<msrv>"
261
+ needs: ext_guard
262
263
+ container:
264
+ image: "rust:1.91-alpine"
265
+ defaults:
266
+ run:
267
+ shell: "sh"
268
+ runs-on: "ubuntu-latest"
269
270
+ steps:
271
+ - name: "Fetch Sources"
272
+ uses: actions/checkout@v4
273
274
+ - name: "Build and Test"
275
+ run: cargo test ${CI_CARGO_ARGS}
0 commit comments