Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Bump actions/labeler from 4.2.0 to 4.3.0 #124

Bump actions/labeler from 4.2.0 to 4.3.0

Bump actions/labeler from 4.2.0 to 4.3.0 #124

Workflow file for this run

name: Clojure CI
on: ["push", "workflow_dispatch", "pull_request"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3.5.3
- name: Cache maven dependencies
uses: actions/cache@v3
env:
cache-name: cache-maven
with:
path: ~/.m2
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/project.clj') }}
- name: Install Clojure dependencies
run: lein deps
- name: Run Clojure tests
run: lein test