about summary refs log tree commit diff
diff options
context:
space:
mode:
authorflip1995 <philipp.krones@embecosm.com>2020-12-10 08:51:27 +0100
committerflip1995 <philipp.krones@embecosm.com>2020-12-10 09:57:30 +0100
commit20d84fdd98c16e36d0701c2b5a7f52268c54977b (patch)
tree9bc909519e21a02824e453695a806a5ec9f4e278
parent77a32ebe1ead9a85ca7f0c20eb59c5b9ba8e64b4 (diff)
downloadrust-20d84fdd98c16e36d0701c2b5a7f52268c54977b.tar.gz
rust-20d84fdd98c16e36d0701c2b5a7f52268c54977b.zip
Enable internal lints for every test in CI
-rw-r--r--.github/workflows/clippy.yml6
-rw-r--r--.github/workflows/clippy_bors.yml6
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml
index abdeb96d36d..85ca63ef8c2 100644
--- a/.github/workflows/clippy.yml
+++ b/.github/workflows/clippy.yml
@@ -63,13 +63,13 @@ jobs:
         echo "LD_LIBRARY_PATH=${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" >> $GITHUB_ENV
 
     - name: Build
-      run: cargo build --features deny-warnings
+      run: cargo build --features deny-warnings,internal-lints
 
     - name: Test
-      run: cargo test --features deny-warnings
+      run: cargo test --features deny-warnings,internal-lints
 
     - name: Test clippy_lints
-      run: cargo test --features deny-warnings
+      run: cargo test --features deny-warnings,internal-lints
       working-directory: clippy_lints
 
     - name: Test rustc_tools_util
diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml
index c86cd32951d..3e3495c25f5 100644
--- a/.github/workflows/clippy_bors.yml
+++ b/.github/workflows/clippy_bors.yml
@@ -123,13 +123,13 @@ jobs:
         SYSROOT=$(rustc --print sysroot)
         echo "$SYSROOT/bin" >> $GITHUB_PATH
 
-    - name: Build with internal lints
+    - name: Build
       run: cargo build --features deny-warnings,internal-lints
 
-    - name: Test with internal lints
+    - name: Test
       run: cargo test --features deny-warnings,internal-lints
 
-    - name: Test clippy_lints with internal lints
+    - name: Test clippy_lints
       run: cargo test --features deny-warnings,internal-lints
       working-directory: clippy_lints