Workaround wgpu vulkan sync bug for Tracy initialisation (#85) #110
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
name: Rust | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Rust Format and Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
target: wasm32-unknown-unknown | |
- run: cargo fmt -- --check | |
- run: cargo clippy --locked --all-targets -- -D warnings | |
- run: cargo check --locked --target wasm32-unknown-unknown | |
- run: cargo clippy --locked --all-features --all-targets -- -D warnings | |
- run: cargo doc --no-deps | |
env: | |
RUSTDOCFLAGS: '-D warnings' |