Skip to content

Commit

Permalink
github action for scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroli committed Feb 26, 2021
1 parent 93b98f6 commit b8c57cc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/scala.yml
@@ -0,0 +1,23 @@
name: Scala CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: "Scala 2.13 (code coverage)"
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: Test
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: sbt -Dsbt.color=true -Dsbt.supershell=false clean coverage test coverageReport coverageAggregate coveralls

0 comments on commit b8c57cc

Please sign in to comment.