Skip to content

Update to windows v0.51 #92

Update to windows v0.51

Update to windows v0.51 #92

Workflow file for this run

name: Build and Test
on:
pull_request:
push:
branches:
- master
env:
RUSTFLAGS: -Dwarnings
jobs:
test:
runs-on: windows-latest
strategy:
matrix:
rust: [stable]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt
- name: tests
run: cargo test --all
- name: fmt
run: cargo fmt --all -- --check
if: matrix.rust == 'stable'