Skip to content

template: service with donut and integrant options #60

template: service with donut and integrant options

template: service with donut and integrant options #60

Workflow file for this run

---
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@v3
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner."
- name: "Prepare Java runtime"
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
- name: "Cache Clojure Dependencies"
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
key: clojure-deps-${{ hashFiles('**/deps.edn') }}
restore-keys: clojure-deps-
- name: "Install tools"
uses: DeLaGuardo/setup-clojure@11.0
with:
cli: 1.11.1.1347 # Clojure CLI
cljstyle: 0.15.0
clj-kondo: 2023.03.17
- 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 }}."