test(lifecycle): fix schema version assertion, add shutdown and integ… #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI with Maven | |
| on: | |
| push: | |
| branches: [ "main", "master" ] | |
| tags-ignore: | |
| - 'v*' | |
| pull_request: | |
| branches: [ "main", "master" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source Code | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Execute Unit Tests | |
| run: mvn -B test | |
| - name: Package Fat JAR with Maven | |
| run: mvn -B package | |
| - name: Upload Shaded Release JAR Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: reconmaster-pro-jar | |
| path: target/reconmaster-pro-*-jar-with-dependencies.jar |