chore(deps): bump org.springframework.boot:spring-boot-starter-parent #45
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: CI Build | |
| # Runs a full build (compile + test) on every push to main. | |
| # Snapshot versions are no longer published to GitHub Packages. | |
| # Release artifacts are published to Maven Central via JReleaser (see release.yml). | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build Snapshot (Java 21) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| cache: maven | |
| - name: Build and test | |
| run: mvn -B verify | |
| env: | |
| OPENAI_API_KEY: dummy | |