-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (44 loc) · 1.31 KB
/
clippy.yml
File metadata and controls
51 lines (44 loc) · 1.31 KB
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
46
47
48
49
50
51
name: Clippy
on:
push:
branches:
- main
pull_request:
branches:
- main
- "feat/**"
- "support/**"
paths:
- ".github/workflows/clippy.yml"
- "**.rs"
- "**.toml"
jobs:
clippy:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: "./.github/actions/rust/setup"
with:
os: ${{ runner.os }}
job: ${{ github.job }}
target: wasm32-unknown-unknown
components: clippy
# Download a pre-compiled wasm-bindgen binary.
- name: Install wasm-bindgen-cli
uses: jetli/wasm-bindgen-action@24ba6f9fff570246106ac3f80f35185600c3f6c9
with:
version: "0.2.108"
- name: core clippy check
uses: actions-rs-plus/clippy-check@b09a9c37c9df7db8b1a5d52e8fe8e0b6e3d574c4
with:
args: --all-targets --all-features -- -D warnings
- name: Wasm clippy check notarization_wasm
uses: actions-rs-plus/clippy-check@b09a9c37c9df7db8b1a5d52e8fe8e0b6e3d574c4
if: ${{ false }}
with:
args: --manifest-path ./bindings/wasm/notarization_wasm/Cargo.toml --target wasm32-unknown-unknown --all-targets --all-features -- -D warnings