Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/test-scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
name: Build
name: Build (Java ${{ matrix.java-version }})
strategy:
matrix:
java-version: ['8', '11', '17', '21']
timeout-minutes: 5
defaults:
run:
Expand All @@ -32,7 +35,7 @@ jobs:
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
with:
distribution: temurin
java-version: '21'
java-version: ${{ matrix.java-version }}
cache: sbt
- uses: sbt/setup-sbt@af116cce31c00823d3903ce687f9cda3a4f19f1b # v1
- run: sbt compile
Expand Down
2 changes: 0 additions & 2 deletions scala/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## 開発

NOTE: java21未満を利用する場合は `project/build.properties` を変更して sbt `1.11.7` などを利用してください

```shell
# 準備
git init && git add . && git commit -m init
Expand Down
2 changes: 1 addition & 1 deletion scala/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val scala3Version = "3.8.3"
val scala3Version = "3.3.5"

lazy val root = project
.in(file("."))
Expand Down
2 changes: 1 addition & 1 deletion scala/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.12.9
sbt.version=1.9.9