From 326f340da801fc6fd7351df28bf4d64d5c086b21 Mon Sep 17 00:00:00 2001 From: Arlie Davis Date: Wed, 15 May 2024 17:49:11 -0700 Subject: [PATCH] fix tool_yml --- .github/workflows/clippy.yml | 2 ++ .github/workflows/test.yml | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 619164cb87..fc8d84900b 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -176,6 +176,8 @@ jobs: run: cargo clippy -p test_helpers - name: Clippy test_implement run: cargo clippy -p test_implement + - name: Clippy test_implement_core + run: cargo clippy -p test_implement_core - name: Clippy test_interface run: cargo clippy -p test_interface - name: Clippy test_interface_core diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6b1d7685a7..39fb7543b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -202,6 +202,8 @@ jobs: run: cargo test -p test_helpers --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_implement run: cargo test -p test_implement --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test test_implement_core + run: cargo test -p test_implement_core --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_interface run: cargo test -p test_interface --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_interface_core @@ -256,10 +258,10 @@ jobs: run: cargo test -p test_targets --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_unions run: cargo test -p test_unions --target ${{ matrix.target }} ${{ matrix.etc }} - - name: Test test_variant - run: cargo test -p test_variant --target ${{ matrix.target }} ${{ matrix.etc }} - name: Clean run: cargo clean + - name: Test test_variant + run: cargo test -p test_variant --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_wdk run: cargo test -p test_wdk --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_weak