Skip to content

Commit

Permalink
[build] Add github action workflow for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
blemale committed Jun 5, 2021
1 parent 51549a6 commit c6e992e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,14 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: coursier/cache-action@v6
- uses: olafurpg/setup-scala@v11
- run: sbt clean scalafmtSbtCheck scalafmtCheck coverage +test +doc
- run: sbt coverageReport coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERALLS_FLAG_NAME: Scala

0 comments on commit c6e992e

Please sign in to comment.