Skip to content

fixup! Updated tools to latest version #100

fixup! Updated tools to latest version

fixup! Updated tools to latest version #100

Workflow file for this run

name: Scala CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
- os: ubuntu-latest
- os: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17' # I should move to something newer!
distribution: 'zulu'
cache: 'sbt'
- name: Run tests
run: sbt test
- name: Run main
run: sbt run