aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/scala.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml
new file mode 100644
index 0000000..f182d0c
--- /dev/null
+++ b/.github/workflows/scala.yml
@@ -0,0 +1,21 @@
1name: Scala CI
2
3on:
4 push:
5 branches: [ master ]
6 pull_request:
7 branches: [ master ]
8
9jobs:
10 build:
11
12 runs-on: ubuntu-latest
13
14 steps:
15 - uses: actions/checkout@v2
16 - name: Set up JDK 1.8
17 uses: actions/setup-java@v1
18 with:
19 java-version: 1.8
20 - name: Run tests
21 run: sbt test