Skip to content

Merge pull request #204 from sbt/eed3si9n-patch-2 #39

Merge pull request #204 from sbt/eed3si9n-patch-2

Merge pull request #204 from sbt/eed3si9n-patch-2 #39

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 11
distribution: temurin
jobtype: 1
- os: ubuntu-latest
java: 8
distribution: temurin
jobtype: 1
runs-on: ${{ matrix.os }}
env:
JAVA_OPTS: -Xms800M -Xmx1G -Xss2M -XX:ReservedCodeCacheSize=128M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms800M -Xmx1G -Xss2M -XX:ReservedCodeCacheSize=128M -Dfile.encoding=UTF-8
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "${{ matrix.distribution }}"
java-version: "${{ matrix.java }}"
cache: "sbt"
- shell: bash
run: sbt -v clean test scripted