Skip to content

Commit 585f7e3

Browse files
authored
Self-merging for CI build to work.
CI Build
2 parents 40945c5 + 4103e11 commit 585f7e3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- name: Setup JDK
12+
uses: actions/setup-java@v3
13+
with:
14+
distribution: temurin
15+
java-version: 8
16+
- name: Build and Test
17+
run: sbt -v +test

0 commit comments

Comments
 (0)