Сортировка возвращаемых результатов callHierarchy, убраны мусорные переменные из outgoingCalls #7840
Workflow file for this run
This file contains 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: javadoc | |
on: | |
push: | |
branches-ignore: | |
- "translations_*" | |
pull_request: | |
jobs: | |
gatekeeper: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' && startsWith(github.head_ref, 'translations_') == false || github.event_name == 'push' | |
steps: | |
- run: echo 'Open the Golden Gate' | |
build: | |
needs: gatekeeper | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: gradle | |
- name: Check javadoc build | |
run: ./gradlew javadoc --stacktrace |