Skip to content

Commit

Permalink
ci: update run order of ci (#57)
Browse files Browse the repository at this point in the history
Make sure we run the lighter lint jobs first.
  • Loading branch information
nicklasl authored Aug 28, 2023
1 parent 856f40f commit 8d5c430
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ jobs:

- name: Grant Permission for Gradlew to Execute
run: chmod +x gradlew

- name: Run Lint
run: ./gradlew lintDebug
- name: Run Ktlint
run: ./gradlew ktlintCheck

- name: Run build debug
run: ./gradlew assembleDebug
- name: Run Tests
run: ./gradlew :Provider:testDebugUnitTest --no-daemon --stacktrace
- name: Run build release
run: ./gradlew assembleRelease
- name: Run Lint
run: ./gradlew lintDebug
- name: Run Ktlint
run: ./gradlew ktlintCheck

0 comments on commit 8d5c430

Please sign in to comment.