Skip to content

Update sbt to 1.10.0 #43

Update sbt to 1.10.0

Update sbt to 1.10.0 #43

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- main
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
env:
# define Java options for both official sbt and sbt-extras
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: sbt
- name: 'Run Scalafmt'
run: sbt -v ++3.4.2 scalafmtSbt scalafmtAll
test:
strategy:
fail-fast: false
matrix:
scala: [ 3.3.0, 3.4.2 ]
java: [ 20, 21 ]
exclude:
- scala: 3.3.0
java: 21
runs-on: ubuntu-latest
env:
# define Java options for both official sbt and sbt-extras
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: sbt
- name: 'Run tests'
run: sbt -v ++${{ matrix.scala }} test