Skip to content

ci: fix syntax

ci: fix syntax #5

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: [self-hosted]
services:
docker:
image: docker:20.10.8-dind
container:
image: paritytech/ci-unified:bullseye-1.77.0
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-features --all-targets --locked -- -D warnings && cargo doc --all-features --no-deps --locked