-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1.16 KB
/
on-pull-request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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