-
Notifications
You must be signed in to change notification settings - Fork 3
64 lines (55 loc) · 1.46 KB
/
lint.yml
File metadata and controls
64 lines (55 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Lint
on:
workflow_dispatch:
inputs:
ref:
description: the git ref to checkout from cloudtruth-cli
type: string
rustCacheKey:
description: cache ID to use for rust-cache
type: string
default: v0-cli-lint
workflow_call:
inputs:
ref:
description: the git ref to checkout from cloudtruth-cli
type: string
rustCacheKey:
description: cache ID to use for rust-cache
type: string
default: v0-cloudtruth
env:
CI: true
jobs:
lint:
name: CLI Lint
runs-on: ${{ matrix.runner }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
runner: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
repository: cloudtruth/cloudtruth-cli
ref: ${{ inputs.ref }}
- shell: bash
run: sh cicd/scripts/install-rust.sh
- shell: bash
run: rustup component add rustfmt clippy
- uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ inputs.rustCacheKey }}
- run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-features -- -D warnings
- name: ShellCheck
uses: ludeeus/action-shellcheck@master
if: ${{ !contains(runner.os, 'Windows') }}
with:
ignore_paths: |
crates/cloudtruth-restapi
target