Skip to content

Commit

Permalink
Merge pull request #4 from electronicarts/tehzhed-gh-actions
Browse files Browse the repository at this point in the history
set up actions which build, test and run coverage
  • Loading branch information
Daniele Riccardelli authored Sep 30, 2020
2 parents 6f19749 + e4ffa97 commit df672ac
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Scala CI

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

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 -Dkara.isSnapshot=true coverage test scripted coverageAggregate coverageReport
- name: Publish coverage report
uses: codecov/[email protected]

0 comments on commit df672ac

Please sign in to comment.