-
Notifications
You must be signed in to change notification settings - Fork 13
45 lines (38 loc) · 963 Bytes
/
_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
36
37
38
39
40
41
42
43
44
45
name: Check Clippy
on:
workflow_call:
inputs:
os:
required: true
type: string
rust:
required: true
type: string
jobs:
clippy:
name: '${{inputs.os}}, ${{inputs.rust}}'
runs-on: ${{inputs.os}}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{inputs.rust}}
override: true
components: clippy
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Clippy with all features
uses: actions-rs/cargo@v1
with:
command: ci-clippy-all
- name: Clippy with INX only
uses: actions-rs/cargo@v1
with:
command: ci-clippy-inx
- name: Clippy with API only
uses: actions-rs/cargo@v1
with:
command: ci-clippy-api