forked from compdemocracy/polis
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (28 loc) · 780 Bytes
/
Copy pathtest-clojure.yml
File metadata and controls
33 lines (28 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Test Math/Clojure
on:
push:
branches: ["dev", "504-clj-tests"]
# Note: Only configured for client-admin right now.
paths:
- .github/workflows/test-clojure.yml
- math/**
pull_request:
types: ["opened", "reopened", "synchronize"]
paths:
- .github/workflows/test-clojure.yml
- math/**
jobs:
test-clj:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.2
- uses: actions/setup-java@v1.4.2
with:
java-version: 1.8
- uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: 1.10.1
lein: 2.9.4
- working-directory: math
# Runs all except integration tests which require database and setup/teardown
run: "lein test :default"