Skip to content

Commit

Permalink
Fix pipeline steps to avoid lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad Sianaki committed Jul 8, 2023
1 parent fc83da7 commit 71c63b9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- main
- master
tags:
- v*
pull_request:
Expand Down Expand Up @@ -31,9 +31,13 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- run: echo "Building Debug APK."
- name: Build with Gradle
run: ./gradlew build
- run: echo "Run unit tests"
- name: Test
run: ./gradlew test

- run: echo "Assembling main outputs"
- name: Assemble
run: ./gradlew assemble
- run: echo "Build status report=${{ job.status }}."

- run: echo "Uploading build artifacts"
Expand Down

0 comments on commit 71c63b9

Please sign in to comment.