Skip to content

Commit

Permalink
Add CI build with GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
mosabua committed Oct 20, 2024
1 parent d992e07 commit ecba018
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci

on:
push:
pull_request:

env:
MAVEN: ./mvnw

jobs:
maven-build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version:
- 17
- 21
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- name: Maven build
run: |
$MAVEN clean install -B

0 comments on commit ecba018

Please sign in to comment.