[IHP-24] Recognition docker container #20
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: test pr | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: run scalafmt | |
run: sbt scalafmtCheckAll | |
- name: run tests | |
run: sbt test | |
#run: sbt clean coverage test | |
#- name: run integration tests | |
# run: sbt coverage it:test | |
# - name: calculate coverage | |
# run: sbt coverageReport |