Skip to content

Update nightly.yml

Update nightly.yml #1

Workflow file for this run

name: Nightly Run
on:
push:
branches: ['master']
workflow_dispatch:
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.12]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java (zulu@8)
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 8
cache: sbt
- name: Build project
run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' test