Skip to content

Commit 53bbaa9

Browse files
committed
Add CI
1 parent 159bc2b commit 53bbaa9

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
push:
5+
6+
jobs:
7+
test:
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
include:
12+
- os: macos-14
13+
java: 8
14+
distribution: zulu
15+
runs-on: ${{ matrix.os }}
16+
env:
17+
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Setup JDK
21+
uses: actions/setup-java@v4
22+
with:
23+
distribution: ${{ matrix.distribution }}
24+
java-version: ${{ matrix.java }}
25+
cache: sbt
26+
- uses: ./
27+
- name: Build and test
28+
shell: bash
29+
run: sbt -v +test

build.sbt

Whitespace-only changes.

0 commit comments

Comments
 (0)