We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71a85a0 commit 36b4cc8Copy full SHA for 36b4cc8
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on: [ push, pull_request ]
4
5
+jobs:
6
+ test:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v4
12
13
+ - uses: coursier/cache-action@v6
14
15
+ # SBT 1 base JDK version is 1.8
16
+ - name: setup Java 8
17
+ uses: actions/setup-java@v4
18
+ with:
19
+ java-version: '8'
20
+ distribution: 'temurin'
21
+ cache: 'sbt'
22
23
+ - name: setup SBT
24
+ uses: sbt/setup-sbt@v1
25
26
+ - name: build
27
+ run: sbt clean buildFull
0 commit comments