-
Notifications
You must be signed in to change notification settings - Fork 38
48 lines (43 loc) · 1.16 KB
/
verify-pr.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
46
47
48
name: Verify Pull Request
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
types: [ opened, synchronize, reopened ]
branches: [ master, "bugfix/*", "feature/*", "release/*" ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env.yml
- name: Run Ktlint
run: ./gradlew ktlintCheck
- name: Run Android Lint
run: ./gradlew lint
build:
name: Build the App
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env.yml
- name: Build with Gradle
run: ./gradlew build
test:
name: Unit Tests
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: ./.github/workflows/setup-env.yml
- name: Run unit tests
run: ./gradlew test