Skip to content

Run CI tests on temurin, and use sbt cache #112

Run CI tests on temurin, and use sbt cache

Run CI tests on temurin, and use sbt cache #112

Workflow file for this run

name: Build and test
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 17
- os: windows-latest
java: 17
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "${{ matrix.java }}"
cache: "sbt"
- name: Build and Test
run: sbt -v -Dfile.encoding=UTF-8 +test
shell: bash