Skip to content

Commit

Permalink
GitHub action to verify on push (#14)
Browse files Browse the repository at this point in the history
* Add GitHub action to verify changes to the project.

* switch to maven wrapper in verify action
  • Loading branch information
Til7701 authored May 20, 2024
1 parent e1422f6 commit 85ed2a0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Verify Project

on:
push:

jobs:
verify:
name: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/[email protected]
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Verify with Maven
run: ./mvnw --batch-mode --update-snapshots package # verify needs gpg key

0 comments on commit 85ed2a0

Please sign in to comment.