Skip to content

Commit

Permalink
Add .github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed May 1, 2024
1 parent da3b45d commit 067381b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '8'

- name: Prepare node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'

- name: Install NPM dependencies
run: npm ci

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.9.10

- name: Cache clojure dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: cljdeps-${{ hashFiles('project.clj') }}
restore-keys: cljdeps-

- name: Run tests
run: lein test

0 comments on commit 067381b

Please sign in to comment.