From b93db94573ce33a544ac33a037f4592e686bd1ac Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 17 Dec 2020 00:38:56 +0100 Subject: [PATCH] ci: deny clippy warnings --- .github/workflows/rust.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index a023e96..515e462 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Lint - run: cargo clippy --all --all-targets --all-features + run: cargo clippy --all --all-targets --all-features -- -D warnings - name: Build run: cargo build --all - name: Run tests