fix windows ci

all platforms again
This commit is contained in:
Stephan Dilly 2020-07-21 09:24:28 +02:00
parent 6c798df40a
commit 0c53fed624

View file

@ -12,13 +12,18 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: WSL Setup
if: matrix.os == 'windows-latest'
run: |
choco install wsl-ubuntu-1804
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
@ -38,6 +43,7 @@ jobs:
run: |
cargo clean
make clippy
- name: Build Release
run: make build-release