From a5a897f42fe72c233ef01f85f5e088e116190e9e Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sat, 1 Aug 2020 21:59:27 +0800 Subject: [PATCH] build.yml: clippy: turn warnings into errors Otherwise we'll never know. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0535996..dec543d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: cargo test --no-default-features --features $FEATURES - name: Lint run: | - cargo clippy --no-default-features --features $FEATURES + cargo clippy --no-default-features --features $FEATURES -- -D warnings - name: Check format run: | cargo fmt -- --check