Skip to content

Commit e27337b

Browse files
cgwalterskorrat
authored andcommitted
Add a Windows test
Since we regressed here recently.
1 parent a81c374 commit e27337b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/rust.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,19 @@ jobs:
117117
run: cargo build --all-targets
118118
- name: cargo test
119119
run: cargo test --all-targets
120+
tests-windows:
121+
name: Tests, Windows
122+
runs-on: windows-latest
123+
steps:
124+
- name: Check out repository
125+
uses: actions/checkout@v4
126+
- name: Install toolchain
127+
uses: dtolnay/rust-toolchain@v1
128+
with:
129+
toolchain: stable
130+
- name: Cache build artifacts
131+
uses: Swatinem/rust-cache@v2
132+
- name: cargo build
133+
run: cargo build --all-targets
134+
- name: cargo test
135+
run: cargo test --all-targets

0 commit comments

Comments
 (0)