Skip to content

real_clean initial implementation and some Linux tests #69

real_clean initial implementation and some Linux tests

real_clean initial implementation and some Linux tests #69

Workflow file for this run

name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
test-macos:
name: cargo test on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
test-windows:
name: cargo test on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features