mirror of https://github.com/sbt/sbt.git
27 lines
684 B
YAML
27 lines
684 B
YAML
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@v3
|
|
- 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
|