GHA updates #438
Workflow file for this run
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
name: CI | ||
on: | ||
pull_request: | ||
push: | ||
schedule: | ||
- cron: '0 21 * * 0' | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
java: 8 | ||
distribution: zulu | ||
jobtype: sbt-1 | ||
- os: ubuntu-latest | ||
java: 8 | ||
distribution: temurin | ||
jobtype: sbt-2 | ||
- os: ubuntu-latest | ||
java: 21 | ||
distribution: temurin | ||
jobtype: sbt-1 | ||
- os: ubuntu-latest | ||
java: 24-ea | ||
distribution: temurin | ||
jobtype: sbt-1 | ||
- os: windows-latest | ||
java: 11 | ||
distribution: temurin | ||
jobtype: sbt-1 | ||
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 | ||
- name: Setup JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: "${{ matrix.distribution }}" | ||
java-version: "${{ matrix.java }}" | ||
cache: sbt | ||
- uses: sbt/setup-sbt@v1 | ||
- name: Build and test (sbt 1.x) | ||
if: ${{ matrix.jobtype == sbt-1 }} | ||
Check failure on line 49 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
shell: bash | ||
run: | | ||
sbt -v ++2.12.x scripted | ||
- name: Build and test (sbt 2.x) | ||
if: ${{ matrix.jobtype == sbt-2 }} | ||
shell: bash | ||
run: | | ||
sbt -v ++3.x scripted |