Skip to content

Bump actions/checkout from 3 to 4 (#59) #97

Bump actions/checkout from 3 to 4 (#59)

Bump actions/checkout from 3 to 4 (#59) #97

Workflow file for this run

---
name: Test Clojure Sentry Library
on:
push:
branches:
- '**'
env:
APPLICATION: sentry-clj
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
java: ['8', '17']
steps:
- uses: actions/checkout@v4
- name: Setup Cache
uses: actions/cache@v3
with:
path: |
~/.m2
~/.gitlibs
key: ${{ env.APPLICATION }}-${{ hashFiles('deps.edn') }}
restore-keys: ${{ env.APPLICATION }}-${{ hashFiles('deps.edn') }}
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: 'latest'
- name: Run Tests
run: clojure -T:build run-tests