diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index bc37cb92d5..4164a07029 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -258,30 +258,18 @@ 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_bindings + run: cargo clippy -p tool_bindings - name: Clippy tool_gnu run: cargo clippy -p tool_gnu - name: Clippy tool_lib run: cargo clippy -p tool_lib - name: Clippy tool_license run: cargo clippy -p tool_license - - name: Clippy tool_metadata - 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 run: cargo clippy -p tool_yml - name: Clippy windows diff --git a/.github/workflows/gen.yml b/.github/workflows/gen.yml index 52d66315f6..3ac9f550d4 100644 --- a/.github/workflows/gen.yml +++ b/.github/workflows/gen.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - tool: [windows, sys, yml, license, metadata, standalone] + tool: [bindings, yml, license, standalone] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0cb19797bd..4aaaccfa78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -286,30 +286,18 @@ 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_bindings + run: cargo test -p tool_bindings --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_gnu run: cargo test -p tool_gnu --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_lib run: cargo test -p tool_lib --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test tool_license run: cargo test -p tool_license --target ${{ matrix.target }} ${{ matrix.etc }} - - name: Test tool_metadata - 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 run: cargo test -p tool_yml --target ${{ matrix.target }} ${{ matrix.etc }} - name: Test windows