Skip to content

test for #96

test for #96 #181

Workflow file for this run

name: CI
on:
push:
branches: [issue-96]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build and Test
strategy:
fail-fast: false
runs-on: windows-2019
steps:
- name: Configure git
run: "git config --global core.autocrlf false"
shell: bash
- name: Checkout current branch
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: corretto
cache: sbt
- name: Build project
run: sbt ++3.3.3 test
shell: bash