Fix omniconf.ssm jar #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 All JDKs" | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
docker-image: | |
- clojure:temurin-8-jammy | |
- clojure:temurin-11-jammy | |
- clojure:temurin-17-jammy | |
- clojure:temurin-21-jammy | |
clj-version: ["1.10", "1.11", "1.12"] | |
container: ${{ matrix.docker-image }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Restore Cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: /root/.m2 # Explicit path inside the container to overcome GitHub Actions bug https://github.com/actions/runner/issues/1876 | |
key: ${{ matrix.docker-image }}-${{ matrix.clj-version }}-${{ hashFiles('deps.edn') }} | |
- name: Run Test | |
run: clojure -T:build test :clj '"${{ matrix.clj-version }}"' | |
- name: Save Cache | |
uses: actions/cache/save@v4 | |
with: | |
path: /root/.m2 | |
key: ${{ matrix.docker-image }}-${{ matrix.clj-version }}-${{ hashFiles('deps.edn') }} |