Bump org.graalvm.buildtools.native from 0.11.2 to 0.11.3 in /reactive/spring-boot #284
Workflow file for this run
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: Helidon | |
| on: [pull_request] | |
| jobs: | |
| changes: | |
| name: Check for changes | |
| runs-on: ubuntu-latest | |
| outputs: | |
| app: ${{ steps.filter.outputs.changes }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Configure apps to test | |
| uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| imperative/helidon: imperative/helidon/** | |
| reactive/helidon: reactive/helidon/** | |
| build: | |
| name: Build and test | |
| needs: changes | |
| if: ${{ needs.changes.outputs.app != '[]' && needs.changes.outputs.app != '' }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| app: ${{ fromJson(needs.changes.outputs.app) }} | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./${{ matrix.app }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Configure Java 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| cache: 'gradle' | |
| - name: Run tests | |
| working-directory: ./${{ matrix.app }} | |
| run: mvn test |