Skip to content

Make docs.rs build work and fix READMEs to use the common one #8

Make docs.rs build work and fix READMEs to use the common one

Make docs.rs build work and fix READMEs to use the common one #8

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