forked from metosin/reitit
-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (71 loc) · 1.98 KB
/
testsuite.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: testsuite
on:
push:
pull_request:
jobs:
build-clj:
strategy:
matrix:
# Supported Java versions: LTS releases 8 and 11 and the latest release
jdk: [8, 11, 15]
name: Clojure (Java ${{ matrix.jdk }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj-
- name: Setup Java ${{ matrix.jdk }}
uses: actions/[email protected]
with:
java-version: ${{ matrix.jdk }}
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.5
- name: Run tests
run: ./scripts/test.sh clj
build-cljs:
name: ClojureScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.m2/repository
**/node_modules
key: ${{ runner.os }}-cljs-${{ hashFiles('**/project.clj', '**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-cljs-
- name: Setup Java 11
uses: actions/[email protected]
with:
java-version: 11
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.5
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 12
- name: Install dependencies
run: |
npm ci
- name: Install modules
run: ./scripts/lein-modules install
- name: Run tests
run: ./scripts/test.sh cljs
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Verify cljdoc.edn
run: curl -fsSL https://raw.githubusercontent.com/cljdoc/cljdoc/master/script/verify-cljdoc-edn | bash -s doc/cljdoc.edn