We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0711ca commit c55477fCopy full SHA for c55477f
1 file changed
.github/workflows/checks.yml
@@ -0,0 +1,23 @@
1
+name: Checks
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Set up JDK 17
15
+ uses: actions/setup-java@v4
16
+ with:
17
+ java-version: '17'
18
+ distribution: 'temurin'
19
+ cache: maven
20
+ - name: Build
21
+ run: mvn -B package --file pom.xml
22
+ - name: Test
23
+ run: mvn test
0 commit comments