Merge pull request #6 from factorhouse/update-to-factorhouse #168
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-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Install Clojure tools | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 'latest' | |
- run: lein kaocha | |
- run: lein kondo | |
- run: lein fmt |