Native CPU capture: monorepo, plugin bridge, and privacy contracts #127
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: Version bump check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-tugboat-version: | |
| name: Require path-aware version policy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Compare versions to base | |
| env: | |
| BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
| run: bash tool/ci/check-version-policy.sh | |
| license: | |
| name: AGPL-3.0-only license | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check license files | |
| run: bash tool/ci/check-license.sh | |
| android-api: | |
| name: Android runtime API surface | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Diff public API dump | |
| run: bash tool/ci/verify-android-runtime-api.sh | |
| swift-api: | |
| name: Swift API surface | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Diff public API dump | |
| run: bash tool/ci/verify-swift-api.sh |