Merge pull request #381 from HSLdevcom/feat/70552_upgrade-to-java-25 #749
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: Test and publish Maven package | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| cache: 'maven' | |
| - name: Run Spotless Apply | |
| run: mvn spotless:apply | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build with Maven | |
| run: mvn clean package -Dmaven.javadoc.skip=true -B -V | |
| - name: Run integration tests | |
| run: mvn failsafe:integration-test && mvn failsafe:verify | |
| publish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| # Run only for tagged commits | |
| if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| cache: 'maven' | |
| - name: Publish package | |
| run: mvn --batch-mode deploy | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Delete old versions of the package | |
| uses: actions/delete-package-versions@v4 | |
| with: | |
| package-type: 'maven' | |
| package-name: 'fi.hsl.transitdata-common' | |
| min-versions-to-keep: 50 |