Skip to content

Commit

Permalink
Adding Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmolimar committed May 15, 2021
1 parent a3852df commit ce30a56
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/hoolok-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Hoolok CI build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
java-version: openjdk@1.11

- name: Compile
run: sbt clean compile

- name: Unit and Integration tests with coverage
run: sbt coverage test it:test coverageReport

- name: Assembly
run: sbt 'set assembly / test := {}' assembly

0 comments on commit ce30a56

Please sign in to comment.