From 8377002315aad0dfb9756b0e37020bdcae306baa Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Fri, 14 Jun 2024 13:52:59 -0500 Subject: [PATCH] tool_yml --- .github/workflows/clippy.yml | 8 ++++++++ .github/workflows/test.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 1d55461eb1..bc37cb92d5 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -258,6 +258,8 @@ jobs: run: cargo clippy -p test_window_long - name: Clippy test_winrt run: cargo clippy -p test_winrt + - name: Clippy tool_core + run: cargo clippy -p tool_core - name: Clippy tool_gnu run: cargo clippy -p tool_gnu - name: Clippy tool_lib @@ -268,10 +270,16 @@ jobs: run: cargo clippy -p tool_metadata - name: Clippy tool_msvc run: cargo clippy -p tool_msvc + - name: Clippy tool_registry + run: cargo clippy -p tool_registry + - name: Clippy tool_result + run: cargo clippy -p tool_result - name: Clippy tool_standalone run: cargo clippy -p tool_standalone - name: Clippy tool_sys run: cargo clippy -p tool_sys + - name: Clippy tool_version + run: cargo clippy -p tool_version - name: Clippy tool_windows run: cargo clippy -p tool_windows - name: Clippy tool_yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 884c5bacc9..0cb19797bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -286,6 +286,8 @@ jobs: run: cargo test -p test_window_long --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test test_winrt run: cargo test -p test_winrt --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test tool_core + run: cargo test -p tool_core --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_gnu run: cargo test -p tool_gnu --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_lib @@ -296,10 +298,16 @@ jobs: run: cargo test -p tool_metadata --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_msvc run: cargo test -p tool_msvc --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test tool_registry + run: cargo test -p tool_registry --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test tool_result + run: cargo test -p tool_result --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_standalone run: cargo test -p tool_standalone --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_sys run: cargo test -p tool_sys --target ${{ matrix.target }} ${{ matrix.etc }} + - name: Test tool_version + run: cargo test -p tool_version --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_windows run: cargo test -p tool_windows --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_yml