-
Notifications
You must be signed in to change notification settings - Fork 18
32 lines (29 loc) · 847 Bytes
/
lint.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
name: Run lint checks
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
version: [full, fdroid]
name: Run lint checks (${{ matrix.version }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Capitalize version name
id: capitalize-version
uses: ASzc/change-string-case-action@v6
with:
string: ${{ matrix.version }}
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run lint checks
run: ./gradlew lint${{ steps.capitalize-version.outputs.capitalized }}Debug