-
Notifications
You must be signed in to change notification settings - Fork 8
54 lines (42 loc) · 1.34 KB
/
ci.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest] # macOS-latest, windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
# It is important to install java before installing clojure tools which needs java
# exclusions: babashka, clj-kondo and cljstyle
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@9.5
with:
lein: latest # Leiningen
# bb: latest # Babashka
- name: Setup bb from master
run: |
bash <(curl https://raw.githubusercontent.com/babashka/babashka/master/install) \
--version 0.9.163-SNAPSHOT --dir /usr/local/bin
# Optional step:
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
# List all files containing dependencies:
key: cljdeps-${{ hashFiles('project', 'bb.edn') }}
restore-keys: cljdeps-
- name: Test Clojure
run: bb test:clj
- name: Test Babashka
run: bb test:bb