Skip to content

update gitignore & add cljfmt.edn #29

update gitignore & add cljfmt.edn

update gitignore & add cljfmt.edn #29

Workflow file for this run

name: CI
on: [ push ]
jobs:
test-clj:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.4
with:
cli: 1.12.1.1550
- name: Cache clojure dependencies
uses: actions/cache@v4
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('deps.edn') }}
restore-keys: cljdeps-
- name: Run CLJ Tests
run: ./bin/kaocha --profile ci
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure()
with:
report_paths: 'reports/junit.xml'
include_time_in_summary: true