Skip to content

chore(ci): add clippy action #1

chore(ci): add clippy action

chore(ci): add clippy action #1

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Birger Schacht <[email protected]>
# SPDX-License-Identifier: MIT
#
on: push
name: Clippy check
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Clippy
run: cargo clippy --all-targets --all-features