Bugfix panic in D3D11RenderEngine->restore #242
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: Lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
run: | | |
rustup toolchain install nightly --target x86_64-pc-windows-msvc,i686-pc-windows-msvc --profile minimal -c rustfmt,clippy | |
- name: Format | |
run: | | |
cargo +nightly fmt --all -- --check | |
- name: Clippy | |
run: | | |
cargo +nightly clippy --all-targets --target x86_64-pc-windows-msvc -- -D clippy::all | |
cargo +nightly clippy --all-targets --target i686-pc-windows-msvc -- -D clippy::all |