Skip to content

Commit

Permalink
Add GitHub actions build.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Aug 16, 2024
1 parent 3176863 commit 0d3df30
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI Build

on:
push:
branches: [ main ]

jobs:
build:
name: Build project
runs-on: ubuntu-latest

steps:

- name: Check out sources
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'

- name: Build with Maven
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
run: ./mvnw clean verify -B

0 comments on commit 0d3df30

Please sign in to comment.