Skip to content

Commit

Permalink
(maint) Add Github Action to run lein test
Browse files Browse the repository at this point in the history
  • Loading branch information
rileynewton committed Dec 7, 2023
1 parent b9ec87f commit f1a93e1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/lein-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: lein_test

on:
workflow_dispatch:
push:
branches:
- main
paths: ['*']
pull_request:
types: [opened, reopened, edited, synchronize]
paths: ['*']

jobs:
run-lein-tests:
name: lein test - Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Install Clojure tools
uses: DeLaGuardo/setup-clojure@10.2
with:
cli: latest # Clojure CLI based on tools.deps
lein: latest # Leiningen
boot: latest # Boot.clj
bb: latest # Babashka
clj-kondo: latest # Clj-kondo
cljstyle: latest # cljstyle
zprint: latest # zprint
- name: Run lein tests
run: lein test

0 comments on commit f1a93e1

Please sign in to comment.