Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Please select multiple options if required.
# Checklist:

- [ ] I have updated the `gradle.properties` file with the new version
- [ ] I have updated the `CHANGELOG.md` file with the details of the new versio
- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code where necessary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
os: [ ubuntu-latest ]
java-distribution: [ temurin ]
java-version: [ 11, 17, 20, 21 ]
java-version: [ 11, 17, 20, 21, 22, 23 ]
runs-on: ${{ matrix.os }}
outputs:
project_version: ${{ steps.get_project_version.outputs.project_version }}
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/workflow-examples.yml
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I havent' been able to try this yet, but I'm fairly confident

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Workflow that runs on the examples projects.
# Triggered by pushes on the main branch (excluding tags).
# Build, test, run coverage analysis and release to Maven Central a final release.
name: Workflow on example projects

on:
push:
tags-ignore:
- '**'

jobs:
build-test:
strategy:
matrix:
project-working-dir: ["quarkus-mvc"]
name: Build and tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./examples/${{ matrix.project-working-dir }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'gradle'
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Lint
run: ./gradlew spotlessJavaCheck
- name: Build
run: ./gradlew build -x test
- name: Run tests
run: ./gradlew test
Loading
Loading