-
Notifications
You must be signed in to change notification settings - Fork 6
54 lines (43 loc) · 983 Bytes
/
build-test.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
name: Build and Test
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Install leiningen
uses: DeLaGuardo/[email protected]
with:
lein: latest
- name: Cache m2 repository
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-m2-
- name: Install dependencies
run: |
cd cassandra
lein install
- name: Run test for Cassandra
run: |
cd cassandra
lein cloverage
- name: Run test for ScalarDB
run: |
cd scalardb
lein cloverage
- name: Run test for ScalarDL
run: |
cd scalardl
lein cloverage