-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (28 loc) · 890 Bytes
/
tests.yaml
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
# https://practical.li/clojure/continuous-integration/github-actions/
name: Tests build
on: [push]
jobs:
clojure:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare java
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@4.0
with:
cli: 1.11.1.1155 # Clojure CLI based on tools.deps
#- name: Run Clj Unit tests
# run: make test-clj
- name: Install Chrome
uses: browser-actions/setup-chrome@latest
- name: Generate library code
run: make generate-all
- name: Run clj tests
run: make test-clj
- name: Run cljs tests
run: make test-cljs