Skip to content

Commit 0d3df30

Browse files
committedAug 16, 2024··
Add GitHub actions build.
1 parent 3176863 commit 0d3df30

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
 

‎.github/workflows/build.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI Build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
build:
9+
name: Build project
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
14+
- name: Check out sources
15+
uses: actions/checkout@v4
16+
17+
- name: Set up JDK 17
18+
uses: actions/setup-java@v4
19+
with:
20+
distribution: 'temurin'
21+
java-version: 17
22+
cache: 'maven'
23+
24+
- name: Build with Maven
25+
env:
26+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
27+
run: ./mvnw clean verify -B

0 commit comments

Comments
 (0)
Please sign in to comment.