WIP: Rewrite #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
cache: 'maven' | |
cache-dependency-path: '**/deps.edn' | |
- uses: extractions/setup-just@v2 | |
- uses: DeLaGuardo/setup-clojure@12.5 | |
with: | |
cli: latest | |
- name: Setup Git | |
run: | | |
git config --global user.email "ci@kepler16.com" | |
git config --global user.name "Kmono CI" | |
- name: Setup Kmono | |
uses: kepler16/setup-kmono@v1 | |
with: | |
version: 4.7.2 | |
- name: Test | |
run: | | |
just run test --run-in-order false -M :test |