Skip to content

Add github jobs to build on mac and windows. #1

Add github jobs to build on mac and windows.

Add github jobs to build on mac and windows. #1

Workflow file for this run

name: Windows Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-on-windows-latest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release
- name: Test
run: cargo test --all-features