Skip to content

Commit

Permalink
require clojure >= 1.10.3 in test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed May 26, 2023
1 parent 33f8dce commit a4a09c1
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -3,5 +3,20 @@ name: Test
on: [push]

jobs:
call-test:
uses: clojure/build.ci/.github/workflows/test.yml@master
test:
strategy:
matrix:
os: [ubuntu-latest] # macOS-latest, windows-latest]
java-version: ["8", "11", "17"]
clojure-version: ["1.10.3", "1.11.1"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
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

0 comments on commit a4a09c1

Please sign in to comment.