We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81c374 commit e27337bCopy full SHA for e27337b
.github/workflows/rust.yml
@@ -117,3 +117,19 @@ jobs:
117
run: cargo build --all-targets
118
- name: cargo test
119
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