Skip to content

Publish for the 3 most recent Scala 2.13.x versions #53

Publish for the 3 most recent Scala 2.13.x versions

Publish for the 3 most recent Scala 2.13.x versions #53

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
main:
name: Build and test
strategy:
fail-fast: false
matrix:
scala:
- 2.11.12
- 2.12.15
- 2.13.13
- 2.13.14
- 2.13.15
- 3.3.3
- 3.4.2
java:
- 1.8
- 1.11
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Java and Scala
uses: olafurpg/setup-scala@v13
with:
java-version: adopt@${{ matrix.java }}
- name: Cache sbt
uses: coursier/cache-action@v6
- name: Test
run: |
sbt ++${{ matrix.scala }} test