Skip to content

Commit

Permalink
Merge 91cb823 into d9b2629
Browse files Browse the repository at this point in the history
  • Loading branch information
wzorgdrager committed Nov 10, 2020
2 parents d9b2629 + 91cb823 commit ada4a33
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/scala.yml
@@ -0,0 +1,26 @@
name: Scala CI

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
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 'set parallelExecution in ThisBuild := false' clean coverage test coverageReport && sbt coverageAggregate
- name: Scala format check
run: sbt scalafmtCheck
- name: Coveralls
run: sbt coveralls

0 comments on commit ada4a33

Please sign in to comment.