Skip to content

Fix debug build not working (#62) #13

Fix debug build not working (#62)

Fix debug build not working (#62) #13

Workflow file for this run

name: Test
on:
push:
jobs:
test_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build and test
run: |
cargo build
cargo test
test_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build and test
run: |
cargo build
cargo test