Commit f00b704 1 parent 9cdcb23 commit f00b704 Copy full SHA for f00b704
File tree 2 files changed +39
-7
lines changed
2 files changed +39
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ test :
13
+ runs-on : ubuntu-latest
14
+ timeout-minutes : 5
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v4
18
+ - name : Cache project dependencies
19
+ uses : actions/cache@v4
20
+ with :
21
+ path : ~/.m2/repository
22
+ key : ${{ runner.os }}-clojure-${{ hashFiles('**/project.clj') }}
23
+ restore-keys : |
24
+ ${{ runner.os }}-clojure
25
+ - name : Prepare java
26
+ uses : actions/setup-java@v4
27
+ with :
28
+ distribution : ' temurin'
29
+ java-version : 21
30
+ - name : Install clojure tools
31
+ uses :
DeLaGuardo/[email protected]
32
+ with :
33
+ lein : latest
34
+ - name : Start Redis
35
+ uses :
supercharge/[email protected]
36
+ with :
37
+ redis-version : 7
38
+ redis-port : 6380
39
+ - run : lein test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments