Skip to content

Commit b1c65c5

Browse files
committed
feat: Support building on Windows
1 parent 8ccba2f commit b1c65c5

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/push.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
- push
44
- pull_request
55

6-
76
jobs:
87
debian_x86:
98
runs-on: ubuntu-22.04
@@ -29,3 +28,19 @@ jobs:
2928
run: cargo build
3029
- name: Run cargo test
3130
run: cargo test
31+
windows_2019_x86:
32+
runs-on: windows-2019
33+
timeout-minutes: 30
34+
steps:
35+
- name: Checkout
36+
uses: actions/checkout@v4
37+
- name: Run cargo build
38+
run: cargo build
39+
windows_2022_x86:
40+
runs-on: windows-2022
41+
timeout-minutes: 30
42+
steps:
43+
- name: Checkout
44+
uses: actions/checkout@v4
45+
- name: Run cargo build
46+
run: cargo build

0 commit comments

Comments
 (0)