We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e2f983 commit b7534f0Copy full SHA for b7534f0
1 file changed
.github/workflows/build_test.yml
@@ -10,20 +10,14 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- build-linux:
+ build-windows:
14
runs-on: windows-latest
15
- strategy:
16
- matrix:
17
- toolchain:
18
- - stable
19
- - beta
20
- - nightly
21
steps:
22
- uses: actions/checkout@v4
23
- name: Setup dependencies
24
run: |
25
- rustup update ${{ matrix.toolchain }}
26
- rustup default ${{ matrix.toolchain }}
+ rustup update stable
+ rustup default stable
27
28
- name: Build
29
0 commit comments