Skip to content

Update Rust crate windows to 0.51 #71

Update Rust crate windows to 0.51

Update Rust crate windows to 0.51 #71

Workflow file for this run

name: Rust
on: ['push', 'pull_request']
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose --all-features