Merge pull request #21 from martijnhoekstra/update/sbt-tpolecat-0.1.20 #56
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: Scala CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Run tests | |
run: sbt --client test | |
- name: Run scripted tests | |
run: sbt --client scripted | |
- name: Check scalafmt | |
run: sbt --client scalafmtCheckAll | |
- name: Check scalafmt of sbt files | |
run: sbt --client scalafmtSbtCheck |