We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa369af commit a1a1aa5Copy full SHA for a1a1aa5
.github/workflows/main.yml
@@ -5,22 +5,24 @@ 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
+ - uses: actions/checkout@v4
16
17
- - uses: olafurpg/setup-scala@v13
+ - uses: actions/setup-java@v4
18
with:
19
- java-version: liberica@17=tgz+${{ env.LIBERICA_URL }}
+ distribution: temurin
+ java-version: 17
+ java-package: jdk+fx
+ cache: sbt
20
+
21
+ - uses: sbt/setup-sbt@v1
22
- - uses: actions/setup-python@v4
23
+ - uses: actions/setup-python@v5
24
- python-version: '3.x'
25
+ python-version: '3.10'
26
27
- name: Install Python 3 libraries
28
run: pip3 install numpy scikit-learn
0 commit comments