Update kind-projector to 0.13.3 #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- v*.*.* | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- java: 14 | |
scala: 2 | |
- java: 8 | |
scala: 3 | |
name: Scala v${{ matrix.scala }} / Java v${{ matrix.java }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Setup Scala | |
uses: japgolly/[email protected] | |
with: | |
java-version: adopt@1.${{ matrix.java }} | |
- name: Build and test | |
shell: bash | |
run: sbt++field scala${{ matrix.scala }} clean test |