We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd9fdd7 commit c0bac61Copy full SHA for c0bac61
.github/workflows/main.yml
@@ -1,15 +1,25 @@
1
-name: Hello World Workflow
+name: Android Lint
2
3
-on:
+on:
4
push:
5
+ pull_request:
6
7
jobs:
- hello-world:
8
+ lint:
9
runs-on: ubuntu-latest
10
11
steps:
12
- name: Checkout code
13
uses: actions/checkout@v4
14
- - name: Print Hello World
15
- run: echo "Hello World"
+ - name: Set up JDK
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ distribution: 'temurin'
19
+ java-version: '17'
20
+
21
+ - name: Setup Gradle
22
+ uses: gradle/actions/setup-gradle@v3
23
24
+ - name: Run Android Lint
25
+ run: ./gradlew lint
0 commit comments