Skip to content

Commit

Permalink
Add Mavan build and test to CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
halvorot committed Mar 14, 2024
1 parent a6ae4fd commit e9c37df
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

name: Maven build and test

on:
push

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn clean install

0 comments on commit e9c37df

Please sign in to comment.