From 68a56a580710e7f99198488005153cc97f3d411f Mon Sep 17 00:00:00 2001 From: Matt Hills Date: Fri, 13 Jun 2025 17:47:53 -0400 Subject: [PATCH] removing generic CI workflow --- .github/workflows/android-ci.yml | 49 -------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/android-ci.yml diff --git a/.github/workflows/android-ci.yml b/.github/workflows/android-ci.yml deleted file mode 100644 index 7540475..0000000 --- a/.github/workflows/android-ci.yml +++ /dev/null @@ -1,49 +0,0 @@ -# GitHub Actions workflow for continuous integration -# This workflow runs on pull requests to validate code quality - -name: Android CI - -on: - pull_request: - branches: [ main, develop ] - push: - branches: [ develop ] - -jobs: - test: - name: Run Tests - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - cache: gradle - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Run unit tests - run: ./gradlew test - - - name: Run lint - run: ./gradlew lint - - - name: Upload test results - uses: actions/upload-artifact@v4 - if: always() - with: - name: test-results - path: app/build/test-results/ - - - name: Upload lint results - uses: actions/upload-artifact@v4 - if: always() - with: - name: lint-results - path: app/build/reports/lint-results-*.html \ No newline at end of file