forked from k2n/saml20-clj
-
Notifications
You must be signed in to change notification settings - Fork 12
66 lines (59 loc) · 1.48 KB
/
linters.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Linters
on:
push:
pull_request:
jobs:
Check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "check"
- run: clojure -M:check
Eastwood:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "eastwood"
- run: clojure -X:dev:eastwood
Namespace-Declarations:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "namespace-declarations"
- run: clojure -X:dev:namespace-checker
Reflection-Warnings:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "reflection-warnings"
- run: ./check-for-reflection-warnings.sh
Whitespace:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "whitespace"
- run: clojure -T:whitespace-linter lint
Kondo:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "kondo"
- run: clojure -M:kondo