Skip to content

Switch from the winapi crate to windows-sys #7

Switch from the winapi crate to windows-sys

Switch from the winapi crate to windows-sys #7

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
unit-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable, '1.36']
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: -D warnings
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Run tests
run: cargo test -- --color always