Remove remaining instances of Either, FunSpec #43
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: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '13' ] | |
scala: [ '2.13.10' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
- name: print Java version | |
run: java -version | |
- name: setup apibuilder config | |
run: mkdir ~/.apibuilder && echo "[default]" > ~/.apibuilder/config | |
- name: Build | |
run: sbt ++${{ matrix.scala }} clean test |