We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0baf9 commit ec5383cCopy full SHA for ec5383c
.github/workflows/ci.yml
@@ -0,0 +1,22 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request: {}
5
6
+jobs:
7
+ build:
8
+ name: Build branch
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout source code
12
+ uses: actions/checkout@v4
13
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
21
+ - name: Build
22
+ run: mvn verify
.github/workflows/continuous-integration.yml .github/workflows/publish-snapshot.yml
@@ -1,4 +1,4 @@
-name: CI/CD build
+name: Publish Snapshot
on:
push:
0 commit comments