Don't re-export OwnedHandle on Windows #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
push: | |
name: Build & test | |
jobs: | |
test: | |
name: Test (${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: bash | |
run: | | |
cargo test | |
cargo doc --no-deps --document-private-items | |
msrv: | |
name: Check MSRV (${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/[email protected] | |
- shell: bash | |
run: | | |
cargo check | |
cargo test |