chore(deps): bump rstest from 0.25.0 to 0.26.1 #237
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: OS Compatibility | |
| # Path policy: skip this workflow when every changed file is documentation. | |
| # See .github/workflows/docs-lint.yaml for the lightweight docs-only workflow. | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**/*.md" | |
| - "project-words.txt" | |
| pull_request: | |
| paths-ignore: | |
| - "**/*.md" | |
| - "project-words.txt" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: Build on ${{ matrix.os }} (${{ matrix.toolchain }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| toolchain: [nightly, stable] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - id: setup | |
| name: Setup Toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: Build project | |
| run: cargo build --verbose |