Skip to content

fix(examples): repair gradle-helloworld and enable CI job (#28) #54

fix(examples): repair gradle-helloworld and enable CI job (#28)

fix(examples): repair gradle-helloworld and enable CI job (#28) #54

Workflow file for this run

name: CI
on:
pull_request:
push:
tags:
- v*
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scalaversion: ["2.12.21", "2.13.16", "3.3.6", "3.5.0"]
steps:
- uses: actions/checkout@v6
- name: Setup Scala
uses: japgolly/setup-everything-scala@v4.1
- name: Build and test
run: sbt -DCI=1 "++${{ matrix.scalaversion }}" test package
- name: Validate formatting
run: sbt -DCI=1 "++${{ matrix.scalaversion }}" scalafmtCheckAll