Skip to content

Commit c29bcc0

Browse files
committed
chore: add ci.yml
1 parent 51b0b36 commit c29bcc0

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: ci
3+
4+
'on':
5+
workflow_dispatch:
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
11+
jobs:
12+
run_tests:
13+
runs-on: ${{matrix.os}}
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
os:
18+
- ubuntu-22.04
19+
- macos-12
20+
- windows-2022
21+
java-version: [11, 16, 17]
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-java@v4
26+
with:
27+
distribution: 'zulu'
28+
java-version: ${{matrix.java-version}}
29+
30+
- name: Run tests
31+
run: |
32+
sbt test
33+
...

0 commit comments

Comments
 (0)