-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (33 loc) · 1.13 KB
/
clippy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Clippy check
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
clippy_check:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add clippy
# Workaround from https://github.com/actions-rs/clippy-check/issues/2#issuecomment-807878478
# - name: Check workflow permissions
# id: check_permissions
# uses: scherermichael-oss/[email protected]
# with:
# required-permission: write
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Run clippy action to produce annotations
# uses: actions-rs/clippy-check@v1
# if: steps.check_permissions.outputs.has-permission
# with:
# args: --all-targets -- -D warnings
# token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run clippy manually without annotations
# if: ${{ !steps.check_permissions.outputs.has-permission }}
# run: cargo clippy --all-targets -- -D warnings
- name: Run clippy manually without annotations
run: cargo clippy --all-targets -- -D warnings