From d9967ecf58f29a62b39a38c851f533f57977e94d Mon Sep 17 00:00:00 2001 From: zachseidner1 Date: Wed, 5 Mar 2025 22:26:35 -0500 Subject: [PATCH] Add CI --- .github/workflows/android-lint.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/android-lint.yml diff --git a/.github/workflows/android-lint.yml b/.github/workflows/android-lint.yml new file mode 100644 index 0000000..968fbe3 --- /dev/null +++ b/.github/workflows/android-lint.yml @@ -0,0 +1,27 @@ +name: Android Lint +run-name: Running Android Lint + +on: + push: + branches: + - 'main' + pull_request: + branches: + - 'main' + +jobs: + android-lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + cache: gradle + + - name: Run Lint + run: ./gradlew lint + continue-on-error: false \ No newline at end of file