Skip to content

Fixes Windows compilation #88

Fixes Windows compilation

Fixes Windows compilation #88

Workflow file for this run

---
name: Continuous Integration
on:
pull_request:
branches:
- main
jobs:
build-and-check-unix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v18
- run: nix build
- run: nix flake check --no-build --show-trace
build-win:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test