Skip to content

Commit

Permalink
Add github test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brandoncorrea committed May 17, 2024
1 parent 94a33c0 commit a21e05f
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Run Specs

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'

- name: Cache Clojure Dependencies
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-deps-${{ hashFiles('**/deps.edn') }}
restore-keys: |
${{ runner.os }}-deps-
- name: Install Clojure CLI
run: curl -O https://download.clojure.org/install/linux-install-1.11.1.1119.sh && chmod +x linux-install-1.11.1.1119.sh && sudo ./linux-install-1.11.1.1119.sh

- name: Build JAR
run: clojure -T:build jar

- name: Install NPM Dependencies
run: npm install

- name: Run Clojure Tests
run: clojure -M:test:spec

- name: Run ClojureScript Tests
run: clojure -M:test:cljs once

0 comments on commit a21e05f

Please sign in to comment.