File tree 2 files changed +25
-23
lines changed
2 files changed +25
-23
lines changed Original file line number Diff line number Diff line change 6
6
build :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v4
10
- - uses : actions/setup-java@v4
11
- with :
12
- java-version : 11
13
- distribution : temurin
14
- - name : Mount caches
15
- uses : actions/cache@v3
16
- with :
17
- path : |
18
- ~/.sbt
19
- ~/.ivy2/cache
20
- ~/.cache/coursier
21
- key : ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
22
- - name : Compile and test
23
- run : |
24
- sbt -J-Xmx2G -J-Xss4M test
25
- shell : bash
26
- - name : Format check
27
- run : |
28
- sbt scalafmtCheck test:scalafmtCheck scalafmtSbtCheck
9
+ - uses : actions/checkout@v4
10
+ - uses : actions/setup-java@v4
11
+ with :
12
+ java-version : 11
13
+ distribution : temurin
14
+ - uses : sbt/setup-sbt@v1
15
+ - name : Mount caches
16
+ uses : actions/cache@v3
17
+ with :
18
+ path : |
19
+ ~/.sbt
20
+ ~/.ivy2/cache
21
+ ~/.cache/coursier
22
+ key : ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
23
+ - name : Compile and test
24
+ run : |
25
+ sbt -J-Xmx2G -J-Xss4M test
26
+ shell : bash
27
+ - name : Format check
28
+ run : |
29
+ sbt scalafmtCheck test:scalafmtCheck scalafmtSbtCheck
29
30
# Single final job for mergify.
30
31
ci-passed :
31
32
runs-on : ubuntu-latest
32
33
needs : build
33
34
steps :
34
- - run : ' : '
35
+ - run : " : "
Original file line number Diff line number Diff line change 11
11
- name : Set up JDK 8
12
12
uses : actions/setup-java@v4
13
13
with :
14
- java-version : 8
15
- distribution : temurin
14
+ java-version : 8
15
+ distribution : temurin
16
+ - uses : sbt/setup-sbt@v1
16
17
- uses : olafurpg/setup-gpg@v3
17
18
- name : Publish ${{ github.ref }}
18
19
run : sbt ci-release
You can’t perform that action at this time.
0 commit comments