This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Smartling translations are updated for commit 3d1fe1b211be270fbb0c09b921452b04cd6d246f from main #368
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
| name: PR checks | |
| on: | |
| pull_request: | |
| merge_group: | |
| # Cancel in-progress/pending PR checks if a new commit is pushed to the branch. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| android-lint: | |
| name: Android Lint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Set up environment | |
| uses: ./.github/actions/setup-environment | |
| with: | |
| gradle: true | |
| - name: Decrypt secrets | |
| env: | |
| GPG_KEY: ${{ secrets.gpg_key }} | |
| run: secrets/decrypt.sh | |
| - name: Run Android Lint | |
| run: scripts/run-android-lint.sh | |
| licenses: | |
| name: Validate licenses | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Set up environment | |
| uses: ./.github/actions/setup-environment | |
| with: | |
| gradle: true | |
| - name: Decrypt secrets | |
| env: | |
| GPG_KEY: ${{ secrets.gpg_key }} | |
| run: secrets/decrypt.sh | |
| - name: Validate licenses | |
| run: scripts/run-license-checks.sh |