Add fidget-wgpu crate
#847
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: Test native builds | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "macos-14", "windows-latest"] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@nextest | |
| - uses: ./.github/actions/rust-cache | |
| with: | |
| cache-key: test | |
| - name: Run crate tests | |
| run: cargo nextest run --verbose --cargo-verbose --retries 2 | |
| - name: Run doc tests | |
| run: cargo test --verbose --doc |