We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fcca8f commit d22a270Copy full SHA for d22a270
1 file changed
.github/workflows/main.yml
@@ -5,25 +5,20 @@ on:
5
pull_request:
6
workflow_dispatch:
7
8
-env:
9
- LIBERICA_URL: https://download.bell-sw.com/java/17.0.5+8/bellsoft-jdk17.0.5+8-linux-amd64-full.tar.gz
10
-
11
jobs:
12
build-and-test:
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@v3
16
17
- - uses: olafurpg/setup-scala@v13
18
- with:
19
- java-version: liberica@17=tgz+${{ env.LIBERICA_URL }}
+ - uses: actions/checkout@v4
20
21
- - uses: actions/setup-python@v4
+ - uses: actions/setup-java@v4
22
with:
23
- python-version: '3.x'
+ distribution: zulu
+ java-version: 17
+ java-package: jdk+fx
+ cache: sbt
24
25
- - name: Install Python 3 libraries
26
- run: pip3 install numpy scikit-learn
+ - uses: sbt/setup-sbt@v1
27
28
- run: sbt -v update compile
29
- run: sbt -v test
0 commit comments