Skip to content

Commit ecfd63b

Browse files
authored
Merge pull request #22 from Kuuuube/split-tests-build
Split test and build into separate jobs
2 parents 7544019 + c98b0dc commit ecfd63b

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/build_test.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,20 @@ jobs:
2323
run: |
2424
powershell ./build.ps1
2525
26-
- name: Run tests
27-
run: cargo test --verbose
28-
2926
- uses: actions/upload-artifact@v6
3027
with:
3128
name: tabletdrivercleanup
3229
path: ./build
3330
if-no-files-found: error
31+
32+
test-windows:
33+
runs-on: windows-latest
34+
steps:
35+
- uses: actions/checkout@v6
36+
- name: Setup dependencies
37+
run: |
38+
rustup update stable
39+
rustup default stable
40+
41+
- name: Run tests
42+
run: cargo test --verbose

0 commit comments

Comments
 (0)