-
-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (47 loc) · 1.62 KB
/
quality-checks.yaml
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
---
name: "Quality Checks"
on:
pull_request:
push:
branches:
- main
jobs:
check-code-quality:
name: "Check Code Quality"
runs-on: ubuntu-latest
steps:
- run: echo "🚀 Job automatically triggered by ${{ github.event_name }}"
- run: echo "🐧 Job running on ${{ runner.os }} server"
- run: echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
- name: "Checkout code"
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner."
- name: "Prepare Java runtime"
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
- name: "Cache Clojure Dependencies"
uses: actions/cache@v4
with:
path: |
~/.m2/repository
~/.gitlibs
key: clojure-deps-${{ hashFiles('**/deps.edn') }}
restore-keys: clojure-deps-
- name: "Install tools"
uses: DeLaGuardo/setup-clojure@12.5
with:
cli: 1.12.0.1479 # Clojure CLI
cljstyle: 0.16.626
clj-kondo: 2024.09.27
- name: "Kaocha test runner"
run: clojure -X:test/env:test/run
- name: "Lint Clojure"
run: clj-kondo --lint deps.edn --config '{:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"}}'
- name: "Check Clojure Style"
run: cljstyle check --report
- run: echo "🎨 style and format of Clojure code checked"
- run: echo "🍏 Job status is ${{ job.status }}."