bump kondo version #127
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: Tests | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
java-version: ["8", "11", "17"] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Prepare java | |
uses: actions/[email protected] | |
with: | |
distribution: "adopt" | |
java-version: ${{ matrix.java-version }} | |
- name: Setup Clojure | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: 1.11.1.1413 | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Run tests not Windows | |
if: ${{ matrix.os != 'windows-latest' }} | |
run: clojure -X:test | |
shell: bash | |
- name: Run tests on Windows | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: clojure -X:test | |
shell: powershell |