This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Make log4j2 conflict handler easier to find #150
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: Clojure CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '8', '11', '14', '15', '16', '17-ea' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Clojure CLI | |
uses: DeLaGuardo/setup-clojure@master | |
with: | |
tools-deps: '1.10.3.967' | |
- name: Run Tests | |
run: clojure -T:build ci |