summaryrefslogtreecommitdiff
path: root/.github/workflows/clippy.yaml
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-27 17:45:50 -0500
committerseth <[email protected]>2023-11-27 17:45:50 -0500
commit27dbb18788d807117b4ab2ab3c63713460665c1f (patch)
treef8eda3003c02ccaabbd9b257d9c7f47228716daf /.github/workflows/clippy.yaml
parent0ee00e040c4c0b466825e9207e9899fc6a64160f (diff)
actions: reformat workflows
Diffstat (limited to '.github/workflows/clippy.yaml')
-rw-r--r--.github/workflows/clippy.yaml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/clippy.yaml b/.github/workflows/clippy.yaml
index 12838af..8b8df46 100644
--- a/.github/workflows/clippy.yaml
+++ b/.github/workflows/clippy.yaml
@@ -1,13 +1,13 @@
-name: clippy
+name: Clippy
on:
push:
- branches: [main]
+ branches: ["main"]
pull_request:
- workflow_dispatch:
jobs:
clippy:
+ name: Run Clippy scan
runs-on: ubuntu-latest
permissions:
@@ -16,22 +16,22 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: install rust
+ - name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
- - name: setup rust cache
+ - name: Setup Rust cache
uses: Swatinem/rust-cache@v2
- - name: install sarif tools
+ - name: Install SARIF tools
run: cargo install clippy-sarif sarif-fmt
- - name: fetch cargo deps
+ - name: Fetch Cargo deps
run: cargo fetch --locked
- - name: run clippy
+ - name: Run Clippy
continue-on-error: true
run: |
set -euxo pipefail
@@ -42,7 +42,7 @@ jobs:
--message-format=json \
| clippy-sarif | tee /tmp/clippy.sarif | sarif-fmt
- - name: upload results
+ - name: Upload results
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: /tmp/clippy.sarif