Skip to content

Commit 0c53fed

Browse files
author
Stephan Dilly
committed
fix windows ci
all platforms again
1 parent 6c798df commit 0c53fed

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,18 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest, macos-latest]
15+
os: [ubuntu-latest, macos-latest, windows-latest]
1616

1717
runs-on: ${{ matrix.os }}
1818

1919
steps:
2020
- uses: actions/checkout@v2
2121

22+
- name: WSL Setup
23+
if: matrix.os == 'windows-latest'
24+
run: |
25+
choco install wsl-ubuntu-1804
26+
2227
- name: Install Rust
2328
uses: actions-rs/toolchain@v1
2429
with:
@@ -38,6 +43,7 @@ jobs:
3843
run: |
3944
cargo clean
4045
make clippy
46+
4147
- name: Build Release
4248
run: make build-release
4349

0 commit comments

Comments
 (0)