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

Delete .github/dependabot.yml #158

Delete .github/dependabot.yml

Delete .github/dependabot.yml #158

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@v4
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