Skip to content

fix changelog

fix changelog #667

Workflow file for this run

name: Clojure CI - Unit and Integration Tests
on: [ push ]
jobs:
test:
name: Running Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Install dependencies
run: lein deps
- name: Run tests
run: lein test