Skip to content

add both desktop and web clippy checks to action #37

add both desktop and web clippy checks to action

add both desktop and web clippy checks to action #37

Workflow file for this run

name: Enforce Clippy lints, including warnings
on: push
# Fail CI on all warnings, including Clippy lints.
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo clippy --all-targets --features=desktop
- run: cargo clippy --all-targets --features=web