-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (50 loc) · 1.23 KB
/
build-and-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
55
56
57
58
59
60
61
name: Build and Test
on:
push:
tags-ignore:
- '*'
branches:
- '*'
jobs:
buid-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: docker compose up
run: make docker-up
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
java-package: jdk
architecture: x64
- uses: DeLaGuardo/setup-clojure@master
with:
cli: latest
- uses: 0918nobita/[email protected]
with:
cljstyle-version: '0.15.0'
- uses: DeLaGuardo/setup-clj-kondo@master
with:
version: '2023.02.17'
- name: Show versions
run: |
java -version
clojure --version
cljstyle version
clj-kondo --version
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.m2
key: clj-cache-${{ hashFiles('**/deps.edn') }}
restore-keys: |
clj-cache-
- name: Lint
run: make lint
- name: Test
env:
AWS_REGION: ap-northeast-1
AWS_ACCESS_KEY_ID: dummy
AWS_SECRET_ACCESS_KEY: dummy
run: make test