We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7544019 + c98b0dc commit ecfd63bCopy full SHA for ecfd63b
1 file changed
.github/workflows/build_test.yml
@@ -23,11 +23,20 @@ jobs:
23
run: |
24
powershell ./build.ps1
25
26
- - name: Run tests
27
- run: cargo test --verbose
28
-
29
- uses: actions/upload-artifact@v6
30
with:
31
name: tabletdrivercleanup
32
path: ./build
33
if-no-files-found: error
+
+ test-windows:
+ 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