Use Scala 3.4.2 #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# CI configuration | |
# https://docs.github.com/en/actions/guides/building-and-testing-java-with-maven | |
# https://github.com/actions/setup-java | |
name: Scala CI | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 11.0.21 | |
- 21.0.1 | |
scala: | |
- 3.4.2 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
- name: Build with sbt | |
run: sbt '++ ${{ matrix.scala }}' scalaVersion sbtVersion version clean compile test package assembly | |