Skip to content

Resurrect the CI

Resurrect the CI #44

Workflow file for this run

name: Main
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
main:
runs-on: ${{ matrix.image }}
strategy:
matrix:
image:
- ubuntu-24.04
- windows-2019
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '11'
cache: 'sbt'
- name: Set up SBT
uses: sbt/setup-sbt@v1
- name: Build
run: sbt dist