Skip to content

Add links to Solutions Repos in the README #3

Add links to Solutions Repos in the README

Add links to Solutions Repos in the README #3

name: Verify Quarkus Build Caching Extension
on:
schedule:
# Every Sunday at 9.00am - scheduled to test against latest Quarkus version
- cron: "0 9 * * 0"
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
verification:
name: Verification
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: |
./mvnw --batch-mode clean package integration-test
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}
- name: Upload integration tests reports (on failure only)
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: Integration tests logs
path: |
target/it/**/*.log