:inject in process fn-map is now :introduce, more accurate and avoids… #35
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-latest] # macOS-latest, windows-latest] | |
java-version: ["8", "11", "17", "21"] | |
clojure-version: ["1.10.3", "1.11.4", "1.12.0"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -ntp -B -Dclojure.version=${{ matrix.clojure-version }} clean test |