-
Notifications
You must be signed in to change notification settings - Fork 6
60 lines (47 loc) · 1.14 KB
/
fmt-lint.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
name: Format and Lint
on:
push:
branches:
- master
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Cache m2 repository
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-m2-
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.8
clj-kondo: 2023.05.26
cljfmt: 0.10.4
- name: Format check for Cassandra
run: |
cd cassandra
cljfmt check
- name: Format check for ScalarDB
run: |
cd scalardb
cljfmt check
- name: Format check for ScalarDL
run: |
cd scalardl
cljfmt check
- name: Lint for Cassandra
run: clj-kondo --lint cassandra
- name: Lint for ScalarDB
run: clj-kondo --lint scalardb
- name: Lint for ScalarDL
run: clj-kondo --lint scalardl