From c03d5e4ec8d6ee459919e48fa01b066e9ecde8d6 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Sun, 24 Mar 2024 19:55:18 +0100 Subject: [PATCH] Check no_std with the MSRV check --- .github/workflows/ci.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f9d819a1..8b8cd2937 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,15 +16,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@1.69.0 - - run: cargo check -p ash -p ash-rewrite -p ash-window --all-features - - check_no_std: - name: Check ash with no_std - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.69.0 - - run: cargo check -p ash --no-default-features + - name: Check ash, ash-window and ash-rewrite + run: cargo check -p ash -p ash-rewrite -p ash-window --all-features + - name: Check ash with no_std + run: cargo check -p ash --no-default-features # TODO: add a similar job for the rewrite once that generates code generated: