Skip to content

CHANGELOG

CHANGELOG #45

Workflow file for this run

name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-clj:
strategy:
matrix:
# Supported Java versions: LTS releases 8 and 11 and the latest release
jdk: [8, 11, 15, 17]
name: Clojure (Java ${{ matrix.jdk }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Java ${{ matrix.jdk }}
uses: actions/setup-java@v1.4.3
with:
java-version: ${{ matrix.jdk }}
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@3.1
with:
lein: 2.9.4
- name: Run tests
run: lein do clean, all test, all check