forked from X9VoiD/TabletDriverCleanup
-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·42 lines (35 loc) · 813 Bytes
/
build_test.yml
File metadata and controls
executable file
·42 lines (35 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Setup dependencies
run: |
rustup update stable
rustup default stable
- name: Build
run: |
powershell ./build.ps1
- 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