From e7ebb40cd1faf1c000e1312e97d64bacb83ad6ae Mon Sep 17 00:00:00 2001 From: dignifiedquire Date: Tue, 12 Nov 2019 18:15:41 +0100 Subject: [PATCH] do not cancel on warnings --- .github/workflows/rust.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7cbd41c9b..38ddcec53 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -4,9 +4,6 @@ on: pull_request: push: -env: - RUSTFLAGS: -Dwarnings - jobs: build_and_test: name: Build and test @@ -75,7 +72,7 @@ jobs: components: clippy - name: clippy - run: cargo clippy + run: cargo clippy --all python_tests: name: Python Tests 3.7