add comments around our windows-sys back compat arrangement #64
This file contains hidden or 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
| name: tests | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| # not on tags | |
| pull_request: | |
| env: | |
| RUSTFLAGS: "-D warnings" | |
| RUST_BACKTRACE: "1" | |
| jobs: | |
| cargo_tests: | |
| name: ${{ matrix.os }} ${{ matrix.rust_channel }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest", "macOS-latest", "windows-latest"] | |
| rust_channel: [stable, beta, nightly] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust_channel }} | |
| - run: cargo test | |
| # Our Cargo.toml claims compatibility with some very old versions of | |
| # `windows-sys`. Test that. | |
| - run: cargo +nightly update -Zminimal-versions | |
| - run: cargo test |