chore(deps): bump org.junit.platform:junit-platform-launcher from 1.11.3 to 6.0.3 #724
Workflow file for this run
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
| # This workflow will build a Java project with Gradle | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
| name: Pull Request | |
| on: | |
| pull_request: | |
| branches: [ 4.x ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '25' | |
| - name: Cache Gradle packages | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-1-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle-1- | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Run Validity Tests Upfront | |
| run: ./gradlew test --tests "io.reactivex.rxjava4.validators.*" --stacktrace --no-daemon | |
| - name: Build RxJava | |
| run: ./gradlew build --stacktrace | |
| - name: Upload to Codecov | |
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 | |
| - name: Generate Javadoc | |
| run: ./gradlew javadoc --stacktrace |