Skip to content

Update scala3-library, ... to 3.3.4 #177

Update scala3-library, ... to 3.3.4

Update scala3-library, ... to 3.3.4 #177

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Scala v${{ matrix.scala }} / Java v${{ matrix.java }}
strategy:
matrix:
include:
- java: 8
scala: 2.12.19
- java: 14
scala: 2.13.14
- java: 8
scala: 3.3.4
steps:
- name: Git checkout
uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Setup Scala
uses: olafurpg/setup-scala@v12
with:
java-version: adopt@1.${{ matrix.java }}
- name: Cache sbt
uses: coursier/cache-action@v6
- name: Checking your code format
run: sbt scalafmtCheck
- name: Build and test
shell: bash
run: sbt ++${{ matrix.scala }} clean test