-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (37 loc) · 979 Bytes
/
tests.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
name: tests
on:
workflow_dispatch: { }
push:
branches: [ default ]
paths: [ "src/**", "test/**", "project.clj", "*.edn" ]
pull_request:
paths: [ "src/**", "test/**", "project.clj", "*.edn" ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
bb: latest
lein: latest
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('project.clj', 'bb.edn') }}
restore-keys: cljdeps-
- run: lein deps
- run: lein test
- run: lein cljs-test
- run: bb test:bb