Skip to content

Test

Test #55

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
schedule:
# monthly
- cron: "0 0 1 * *"
env:
#bump to clear caches
ACTION_CACHE_VERSION: 'v1'
jobs:
test:
strategy:
matrix:
java: ['8', '11', '17']
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ env.ACTION_CACHE_VERSION }}-${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }}-${{ matrix.java }}
restore-keys: |
${{ env.ACTION_CACHE_VERSION }}-${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }}-
- name: Prepare java
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/setup-node@v2
with:
node-version: '10.13.0'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.8
- name: Run tests
run: lein all test