-
Notifications
You must be signed in to change notification settings - Fork 1
78 lines (66 loc) · 2.38 KB
/
test.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
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: test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-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: '8'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
# Install just one or all simultaneously
# The value must indicate a particular version of the tool, or use 'latest'
# to always provision the latest version
cli: 1.11.1.1347 # Clojure CLI based on tools.deps
# lein: 2.9.1 # Leiningen
# boot: 2.8.3 # Boot.clj
# bb: 0.7.8 # Babashka
# clj-kondo: 2023.05.26 # Clj-kondo
cljfmt: 0.10.5 # cljfmt
# cljstyle: 0.15.0 # cljstyle
# zprint: 1.2.3 # zprint
# 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('deps.edn') }}
# key: cljdeps-${{ hashFiles('deps.edn', 'bb.edn') }}
# key: cljdeps-${{ hashFiles('project.clj') }}
# key: cljdeps-${{ hashFiles('build.boot') }}
restore-keys: cljdeps-
- name: check formatting
run: cljfmt check
- name: run non-integration tests
# clj requires rlwrap to be installed...
run: clojure -X:test :excludes '[:integration]'
- name: run integration tests
run: |
if [[ ! -z "${{ secrets.CONFIG_EDN }}" ]]; then
echo "${{ secrets.CONFIG_EDN }}" > config.edn
clojure -X:test :includes '[:integration]'
fi
- name: build uberjar
run: clojure -T:build uber
- name: upload uberjar
uses: actions/upload-artifact@v3
with:
name: uberjar
retention-days: 1
path: |
target/emqx-snowflake-proxy-*-standalone.jar