From d0f0a66aad07aa1828092f652744faa941ec28ad Mon Sep 17 00:00:00 2001 From: "@brodycj - C. Jonathan Brody" Date: Thu, 16 Jan 2025 21:31:08 -0500 Subject: [PATCH] XXX ADD EXTRA CI SUB-STEP for now - XXX XXX SHOULD (HOPEFULLY) DETECT MISSING IMPORT for no-std --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74fdb91f9c..1783c22801 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -313,6 +313,10 @@ jobs: # build docs cargo doc --target ${{ matrix.target }} ${{ matrix.extra-flags }} --all-features --no-deps + # XXX EXTRA SUB-STEP - (SHOULD) DETECT MISSING IMPORT for no-std + # check wgpu-core with no features + cargo clippy --target ${{ matrix.target }} ${{ matrix.extra-flags }} -p wgpu-core --no-default-features + - name: check private item docs if: matrix.kind == 'native' shell: bash