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 6c798df commit 0c53fedCopy full SHA for 0c53fed
.github/workflows/ci.yml
@@ -12,13 +12,18 @@ jobs:
12
build:
13
strategy:
14
matrix:
15
- os: [ubuntu-latest, windows-latest, macos-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
16
17
runs-on: ${{ matrix.os }}
18
19
steps:
20
- uses: actions/checkout@v2
21
22
+ - name: WSL Setup
23
+ if: matrix.os == 'windows-latest'
24
+ run: |
25
+ choco install wsl-ubuntu-1804
26
+
27
- name: Install Rust
28
uses: actions-rs/toolchain@v1
29
with:
@@ -38,6 +43,7 @@ jobs:
38
43
run: |
39
44
cargo clean
40
45
make clippy
46
41
47
- name: Build Release
42
48
run: make build-release
49
0 commit comments