Skip to content

Bump org.graalvm.buildtools.native from 0.11.2 to 0.11.3 in /reactive/spring-boot #284

Bump org.graalvm.buildtools.native from 0.11.2 to 0.11.3 in /reactive/spring-boot

Bump org.graalvm.buildtools.native from 0.11.2 to 0.11.3 in /reactive/spring-boot #284

Workflow file for this run

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