From c98b0dc0cf844c636674ebcce1ba13ae6a399096 Mon Sep 17 00:00:00 2001 From: kuuuube Date: Fri, 13 Feb 2026 17:11:42 -0500 Subject: [PATCH] Split test and build into separate jobs --- .github/workflows/build_test.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 1a09c94..e007c44 100755 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -23,11 +23,20 @@ jobs: run: | powershell ./build.ps1 - - name: Run tests - run: cargo test --verbose - - uses: actions/upload-artifact@v6 with: name: tabletdrivercleanup path: ./build if-no-files-found: error + + test-windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v6 + - name: Setup dependencies + run: | + rustup update stable + rustup default stable + + - name: Run tests + run: cargo test --verbose