Skip to content

Commit 1add0f0

Browse files
committed
ci
1 parent 0992a68 commit 1add0f0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
push:
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: 17
16+
- name: Build and Test
17+
run: sbt -v +test

0 commit comments

Comments
 (0)