chore: release 0.2.3 #13
Workflow file for this run
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: | |
os: | |
- Ubuntu-20.04 | |
- Ubuntu-22.04 | |
openjdk: | |
- 8 | |
- 11 | |
- 17 | |
- 21 | |
clojure: | |
- 1.8 | |
- 1.9 | |
- 1.10 | |
- 1.11 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Openjdk | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: ${{ matrix.openjdk }} | |
- name: Show java version | |
run: | | |
java -Xmx32m -version | |
- name: Show javac version | |
run: | | |
javac -J-Xmx32m -version | |
- name: Install leiningen | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 2.11.2 | |
- name: Show leiningen version | |
run: | | |
lein version | |
- name: Run test | |
run: | | |
lein with-profile dev,${{ matrix.clojure }} test | |
- name: Run cljs test | |
run: | | |
lein with-profile dev,${{ matrix.clojure }} cljsbuild test |