We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd3bde commit acbae42Copy full SHA for acbae42
.github/workflows/ci.yml
@@ -0,0 +1,37 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: ["main"]
5
+ tags: ["v*"]
6
+ pull_request:
7
+ branches: ["*"]
8
+
9
+jobs:
10
+ build:
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ os: [ubuntu-22.04, macos-14, macos-13, ubuntu-22.04-arm]
15
+ runs-on: ${{ matrix.os }}
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
21
+ - uses: actions/setup-java@v4
22
23
+ distribution: 'temurin'
24
+ java-version: '23'
25
+ cache: 'sbt'
26
27
+ - uses: sbt/setup-sbt@v1
28
29
+ - name: Test
30
+ run: sbt jvmSide/run
31
32
+ mergify-build-checkpoint:
33
+ runs-on: ubuntu-latest
34
+ needs: [build]
35
36
+ - name: I only exist to please Mergify :(
37
+ run: echo "It's a sad existence but necessary"
0 commit comments