Skip to content

Commit

Permalink
Add, github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Pluu committed Jun 7, 2023
1 parent 8e3394d commit 0db7633
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# origin : https://github.com/googlesamples/android-custom-lint-rules/blob/main/.github/workflows/basic.yml

name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
# AGP 8.2 requires 34.0.0-rc3 - see https://issuetracker.google.com/issues/236167971#comment36
# and https://github.com/actions/runner-images/issues/7506#issuecomment-1533097084
# TODO: Remove when AGP updates Build Tools to 34.0.0 and pre-installed in the runner
#- name: Install Android Build Tools 34.0.0-rc3
# run: yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "build-tools;34.0.0-rc3"
# shell: bash
- name: Build with Gradle
run: ./gradlew build :lint:test

0 comments on commit 0db7633

Please sign in to comment.