buildSrc restoration in integration #663
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: Check Public API | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - jb-main | |
| jobs: | |
| check-public-api: | |
| runs-on: macos-15-xlarge | |
| name: Check Public API | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| - name: Setup Prerequisites | |
| uses: ./.github/actions/setup-prerequisites | |
| - name: Setup Xcode | |
| uses: ./.github/actions/setup-xcode | |
| - name: Check Public API | |
| run: | | |
| ./gradlew jbApiCheck \ | |
| --no-daemon --stacktrace |