Skip to content

Commit

Permalink
Update CallAppCICD.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RajuSE authored Oct 8, 2024
1 parent 598baf4 commit 82d3eeb
Showing 1 changed file with 1 addition and 35 deletions.
36 changes: 1 addition & 35 deletions .github/workflows/CallAppCICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,41 +17,7 @@ jobs:
- name: Run sample script
run: echo Hello, CallApp

lint:
name: Perform lint check
needs: [start]
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: print Lint
run: echo Lint done

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'

- name: Cache Gradle
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle-

- name: Make Gradle executable
run: chmod +x ./gradlew

- name: Run lint
run: ./gradlew lintDebug

- name: Upload html test report
uses: actions/upload-artifact@v4
with:
name: lint.html
path: app/build/reports/lint-results-debug.html



debug-apk:
name: Generate Debug APK
Expand Down

0 comments on commit 82d3eeb

Please sign in to comment.