Skip to content

Commit b7534f0

Browse files
committed
Simplify build and test action
1 parent 6e2f983 commit b7534f0

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

.github/workflows/build_test.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,14 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build-linux:
13+
build-windows:
1414
runs-on: windows-latest
15-
strategy:
16-
matrix:
17-
toolchain:
18-
- stable
19-
- beta
20-
- nightly
2115
steps:
2216
- uses: actions/checkout@v4
2317
- name: Setup dependencies
2418
run: |
25-
rustup update ${{ matrix.toolchain }}
26-
rustup default ${{ matrix.toolchain }}
19+
rustup update stable
20+
rustup default stable
2721
2822
- name: Build
2923
run: |

0 commit comments

Comments
 (0)