From fb3bdee6d8573d65fd43aa5365caf591f6fab62b Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Mon, 7 Nov 2022 20:47:53 +0100 Subject: [PATCH] CI: Only MSRV-test published `ash` and `ash-window` crates `bytemuck` recently bumped its MSRV to 1.60 which is incompatible with what we're currently advertising. Fortunately this doesn't affect MSRV of the publicly published crates, but only `dev-dependencies` inside `ash-window` via `winit`: make sure the CI doesn't reject this. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16d348ce0..a8c78511f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: check - args: --workspace --all-targets --all-features + args: -p ash -p ash-window --all-features generated: name: Generated