Skip to content

Commit

Permalink
Merge pull request #12 from niloc132/actions
Browse files Browse the repository at this point in the history
Enable github actions to avoid simple dumb mistakes
  • Loading branch information
niloc132 authored May 15, 2024
2 parents 99bc4c1 + 11f75a6 commit b31dafc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK 21
id: setup-java-21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build and test with Maven
run: mvn -V -B -ntp -U -e verify

0 comments on commit b31dafc

Please sign in to comment.