Use Bindable in @ConfigurationProperties to improve the Generated JSON Schema with default values #2868
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: Run AOT Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - '[1-9]+.[0-9]+.x' | |
| pull_request: | |
| branches: | |
| - master | |
| - '[1-9]+.[0-9]+.x' | |
| jobs: | |
| build: | |
| if: github.repository != 'micronaut-projects/micronaut-project-template' | |
| runs-on: ubuntu-latest | |
| steps: | |
| # https://github.com/actions/virtual-environments/issues/709 | |
| - name: Free disk space | |
| run: | | |
| sudo rm -rf "/usr/local/share/boost" | |
| sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
| sudo apt-get clean | |
| df -h | |
| - uses: actions/checkout@v6 | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gradle- | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5.2.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| - name: Run AOT Tests | |
| run: ./test-suite-aot.sh | |
| env: | |
| TESTCONTAINERS_RYUK_DISABLED: true | |
| GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
| GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | |
| GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | |
| PREDICTIVE_TEST_SELECTION: "${{'false'}}" |