Skip to content

Merge branch 'develop' into dependabot/github_actions/actions/checkout-4 #264

Merge branch 'develop' into dependabot/github_actions/actions/checkout-4

Merge branch 'develop' into dependabot/github_actions/actions/checkout-4 #264

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
# 2am EST every Saturday
- cron: '0 7 * * 6'
jobs:
test:
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:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 8
cache: sbt
- name: Build and test
run: |
sbt -v clean scripted