Use spring-boot-starter-parent in spring-batch-geode
#107
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: Spring Batch Geode | |
| on: | |
| pull_request: | |
| paths: | |
| - 'spring-batch-geode/**' | |
| push: | |
| paths: | |
| - 'spring-batch-geode/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '8' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn -B package | |
| working-directory: spring-batch-geode |