Add bullet-style dirty indicator for CTabFolder tabs #3432
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
| # Fast running checks for pull-requests | |
| name: Pull-Request Checks | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| check-freeze-period: | |
| uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/verifyFreezePeriod.yml@master | |
| check-merge-commits: | |
| uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/checkMergeCommits.yml@master | |
| check-versions: | |
| uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/checkVersions.yml@master | |
| with: | |
| botName: Eclipse Platform Bot | |
| botMail: platform-bot@eclipse.org | |
| check-javadoc-consistency: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 | |
| - uses: actions/setup-java@de5a937a1dc73fbc1a67d7d1aa4bebc1082f3190 # v5.0.0 | |
| with: | |
| java-version: 25 | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Run JavaDoc basher | |
| run: > | |
| mvn --non-recursive --batch-mode --no-transfer-progress | |
| -Pjavadoc-basher exec:exec@run-javadoc-basher | |
| - name: Verify no changes | |
| run: | | |
| if ! git diff --exit-code ; then | |
| echo "::error title=Inconsistent JavaDoc::JavaDoc-Basher discovered JavaDoc inconsistencies between implementations, which must be resolved." | |
| exit 1 | |
| fi |