Skip to content

Commit 6e365c2

Browse files
authored
Add test workflow (#20)
1 parent dbd2d34 commit 6e365c2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-22.04
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
- uses: actions/setup-java@v4
16+
with:
17+
distribution: temurin
18+
java-version: 11
19+
cache: sbt
20+
- run: sbt test

0 commit comments

Comments
 (0)