Skip to content

Commit

Permalink
first attempt: use gh actions for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidangb committed Nov 23, 2020
1 parent 080afb6 commit 00bd69a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Scala CI

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

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
env:
AGORA_URL_ROOT: http://localhost:8989
RAWLS_URL_ROOT: http://localhost:8990
THURLOE_URL_ROOT: http://localhost:8991
FIRE_CLOUD_ID: 123
run: sbt coverage test coverageReport
- name: Coveralls
run: sbt coveralls


0 comments on commit 00bd69a

Please sign in to comment.