File tree 2 files changed +18
-17
lines changed
2 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 1
- name : CI
2
-
1
+ name : test
3
2
on :
4
- pull_request :
5
3
push :
6
- branches : ['main']
7
- tags : ['v[0-9]']
8
-
4
+ branches :
5
+ - main
6
+ pull_request :
9
7
jobs :
10
- build :
8
+ test :
9
+ strategy :
10
+ fail-fast : false
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v4
14
- - uses : actions/setup-java@v4
15
- with :
16
- distribution : ' temurin'
17
- java-version : ' 8'
18
- cache : ' sbt'
19
- - run : sbt +test scripted mimaReportBinaryIssues
13
+ - uses : actions/checkout@v4
14
+ - uses : coursier/cache-action@v6
15
+ - uses : actions/setup-java@v4
16
+ with :
17
+ distribution : temurin
18
+ java-version : 8
19
+ - name : test
20
+ run : sbt +test scripted mimaReportBinaryIssues
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ jobs:
16
16
- uses : actions/checkout@v4
17
17
with :
18
18
fetch-depth : 0
19
+ - uses : coursier/cache-action@v6
19
20
- uses : actions/setup-java@v4
20
21
with :
21
- distribution : ' temurin'
22
- java-version : ' 8'
23
- cache : ' sbt'
22
+ distribution : temurin
23
+ java-version : 8
24
24
25
25
- name : Publish artifacts
26
26
run : sbt ci-release
You can’t perform that action at this time.
0 commit comments