Skip to content

Bump windows-sys to 0.59.0 #28

Bump windows-sys to 0.59.0

Bump windows-sys to 0.59.0 #28

Workflow file for this run

name: Rust
on:
push: { branches: "main" }
pull_request: { branches: "*" }
jobs:
check-fmt:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: cargo fmt -- --check
linux:
name: Build and test on Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
windows:
name: Build and test on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
macos:
name: Build and test on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose