Browse Source

Allow builds on `develop` to write to the Gradle cache, update task names (#3834)

pull/3840/head
Nik Clayton 3 years ago committed by GitHub
parent
commit
a41b81cd70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/ci.yml

6
.github/workflows/ci.yml

@ -25,15 +25,17 @@ jobs:
- name: Gradle Build Action
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
- name: ktlint
run: ./gradlew clean ktlintCheck
- name: Regular lint
run: ./gradlew lintGreenDebug
run: ./gradlew app:lintGreenDebug
- name: Test
run: ./gradlew app:testGreenDebugUnitTest
- name: Build
run: ./gradlew app:greenDebug
run: ./gradlew app:buildGreenDebug

Loading…
Cancel
Save