Skip to content

Add fidget-wgpu crate #847

Add fidget-wgpu crate

Add fidget-wgpu crate #847

Workflow file for this run

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