]> git.lizzy.rs Git - rust.git/blobdiff - .github/workflows/clippy_dev.yml
Extend unnecessary_lazy_eval to cover `bool::then` -> `bool::then_some`
[rust.git] / .github / workflows / clippy_dev.yml
index fe8bce00fa82e162ebcffca2944482dcefe1ffe9..22051093c9cf960992c3a80923e71f72ef4414f1 100644 (file)
@@ -23,7 +23,7 @@ jobs:
     steps:
     # Setup
     - name: Checkout
-      uses: actions/checkout@v2.3.3
+      uses: actions/checkout@v3.0.2
 
     # Run
     - name: Build
@@ -36,6 +36,13 @@ jobs:
     - name: Test fmt
       run: cargo dev fmt --check
 
+    - name: Test cargo dev new lint
+      run: |
+        cargo dev new_lint --name new_early_pass --pass early
+        cargo dev new_lint --name new_late_pass --pass late
+        cargo check
+        git reset --hard HEAD
+
   # These jobs doesn't actually test anything, but they're only used to tell
   # bors the build completed, as there is no practical way to detect when a
   # workflow is successful listening to webhooks only.