2020-04-05 21:32:25 +02:00
|
|
|
name: Windows
|
2020-04-05 01:05:49 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- windows-latest
|
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- run: git config --global core.autocrlf false
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
|
|
run: cargo build --all --locked --verbose
|