We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6998af commit a064bc2Copy full SHA for a064bc2
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: ["master"]
6
+ pull_request:
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up Java 23
20
+ uses: actions/setup-java@v4
21
+ with:
22
+ distribution: temurin
23
+ java-version: "23"
24
+ cache: maven
25
26
+ - name: Run tests
27
+ run: mvn -B test
0 commit comments