Skip to content

Update workflows

Update workflows #3

Workflow file for this run

on: push
name: Clippy check
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Install Clippy
run: rustup component add clippy --toolchain nightly-2023-05-27-x86_64-unknown-linux-gnu
- name: Run Clippy
run: cargo clippy --all-targets --all-features