about summary refs log tree commit diff
path: root/.github/workflows/clippy_dev.yml
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2020-02-07 22:24:41 +0100
committerflip1995 <hello@philkrones.com>2020-02-12 09:34:28 +0100
commitb47dada167dea3d889abd77b7ff584afdaaf0a86 (patch)
treea33b8ddf8324fa3080c46ba933673a6003e1c125 /.github/workflows/clippy_dev.yml
parentabb095ddedd3c918d7c55d028d7f134bf4a507d3 (diff)
Apply review comments
Diffstat (limited to '.github/workflows/clippy_dev.yml')
-rw-r--r--.github/workflows/clippy_dev.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/clippy_dev.yml b/.github/workflows/clippy_dev.yml
index f9e5d73a345..d6f5db014a4 100644
--- a/.github/workflows/clippy_dev.yml
+++ b/.github/workflows/clippy_dev.yml
@@ -19,6 +19,7 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
+    # Setup
     - name: rust-toolchain
       uses: actions-rs/toolchain@v1.0.3
       with:
@@ -26,16 +27,21 @@ jobs:
         target: x86_64-unknown-linux-gnu
         profile: minimal
         components: rustfmt
+
     - name: Checkout
       uses: actions/checkout@v2.0.0
 
+    # Run
     - name: Build
       run: cargo build --features deny-warnings
       working-directory: clippy_dev
+
     - name: Test limit-stderr-length
       run: cargo dev --limit-stderr-length
+
     - name: Test update_lints
       run: cargo dev update_lints --check
+
     - name: Test fmt
       run: cargo dev fmt --check