Skip to content

Commit

Permalink
fix github test
Browse files Browse the repository at this point in the history
  • Loading branch information
spacegangster committed Apr 7, 2024
1 parent acd7a5f commit 3a05914
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/github-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,30 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3

- name: Setup JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'

- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
lein: '2.9.1' # Specify the Leiningen version you need

- name: Cache Maven dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }}
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('project.clj') }}
restore-keys: |
${{ runner.os }}-m2-
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
lein: '2.9.5' # Specify the Leiningen version you need

- name: Run tests
run: lein test

0 comments on commit 3a05914

Please sign in to comment.