Merge pull request #257 from liquidz/dev #680
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: | |
strategy: | |
matrix: | |
java: ['8', '11', '17'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
- run: java -version | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: latest | |
lein: latest | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: test-m2-${{ hashFiles('deps.edn') }}-v1 | |
- name: run test | |
run: make test |