Add GitHub Actions

This commit is contained in:
Sean Corfield 2020-05-29 12:34:33 -07:00
parent 8af9790cf0
commit 21d971f2f0

22
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Clojure CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '14' ]
steps:
- uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@2.0
with:
tools-deps: '1.10.1.536'
- name: Run Tests
run: sh run-tests.sh all