You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,22 @@ jobs:
6
6
runs-on: ubuntu-latest
7
7
steps:
8
8
- uses: actions/checkout@v2.2.0
9
-
- name: Set up JDK 15
9
+
- name: Set up JDK 16
10
10
uses: actions/setup-java@v1
11
11
with:
12
-
java-version: 15
12
+
java-version: 16
13
13
- name: Start docker
14
14
run: docker-compose -f docker-compose.test.yml up -d
15
15
- name: Build
16
16
id: build_server
17
17
run: sbt publishLocal
18
18
- name: Run test
19
19
id: test
20
-
run: JAVA_OPTS="--enable-preview" sbt "project thoth-core" test && sbt "project thoth-jooq" test && sbt "project thoth-jooq-async" test && sbt "project thoth-kafka-goodies" test && sbt "project thoth-tck" test
20
+
run: sbt "project thoth-core" test && sbt "project thoth-jooq" test && sbt "project thoth-jooq-async" test && sbt "project thoth-kafka-goodies" test && sbt "project thoth-tck" test
21
+
- name: Stop docker
22
+
run: docker-compose -f docker-compose.test.yml down
0 commit comments