-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #523 from nimblehq/release/3.24.0
[Release] 3.24.0
- Loading branch information
Showing
105 changed files
with
561 additions
and
404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
|
||
- name: Checkout source code | ||
uses: actions/[email protected] | ||
|
||
|
@@ -28,36 +22,20 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# template-xml | ||
|
||
- name: Run Detekt on template-xml | ||
working-directory: ./template-xml | ||
run: ./gradlew detekt | ||
|
||
- name: Archive Detekt reports on template-xml | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: DetektReportsTemplateXML | ||
path: template-xml/build/reports/detekt/ | ||
|
||
- name: Run unit tests with Kover on template-xml | ||
working-directory: ./template-xml | ||
run: ./gradlew koverHtmlReport | ||
# template-compose | ||
|
||
- name: Archive code coverage reports on template-xml | ||
uses: actions/upload-artifact@v2 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
name: CodeCoverageReportsTemplateXML | ||
path: template-xml/app/build/reports/kover/ | ||
|
||
# template-compose | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Run Detekt on template-compose | ||
working-directory: ./template-compose | ||
run: ./gradlew detekt | ||
|
||
- name: Archive Detekt reports on template-compose | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: DetektReportsTemplateCompose | ||
path: template-compose/build/reports/detekt/ | ||
|
@@ -67,19 +45,47 @@ jobs: | |
run: ./gradlew koverHtmlReport | ||
|
||
- name: Archive code coverage reports on template-compose | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: CodeCoverageReportsTemplateCompose | ||
path: template-compose/app/build/reports/kover/ | ||
|
||
# template-xml | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
|
||
- name: Run Detekt on template-xml | ||
working-directory: ./template-xml | ||
run: ./gradlew detekt | ||
|
||
- name: Archive Detekt reports on template-xml | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: DetektReportsTemplateXML | ||
path: template-xml/build/reports/detekt/ | ||
|
||
- name: Run unit tests with Kover on template-xml | ||
working-directory: ./template-xml | ||
run: ./gradlew koverHtmlReport | ||
|
||
- name: Archive code coverage reports on template-xml | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: CodeCoverageReportsTemplateXML | ||
path: template-xml/app/build/reports/kover/ | ||
|
||
# sample-xml | ||
|
||
- name: Run Detekt on sample-xml | ||
working-directory: ./sample-xml | ||
run: ./gradlew detekt | ||
|
||
- name: Archive Detekt reports on sample-xml | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: DetektReportsTemplateXML | ||
path: sample-xml/build/reports/detekt/ | ||
|
@@ -89,7 +95,7 @@ jobs: | |
run: ./gradlew koverHtmlReport | ||
|
||
- name: Archive code coverage reports on sample-xml | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: CodeCoverageReportsTemplateXML | ||
path: sample-xml/app/build/reports/kover/ | ||
|
@@ -101,7 +107,7 @@ jobs: | |
run: ./gradlew detekt | ||
|
||
- name: Archive Detekt reports on sample-compose | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: DetektReportsTemplateCompose | ||
path: sample-compose/build/reports/detekt/ | ||
|
@@ -111,7 +117,7 @@ jobs: | |
run: ./gradlew koverHtmlReport | ||
|
||
- name: Archive code coverage reports on sample-compose | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: CodeCoverageReportsTemplateCompose | ||
path: sample-compose/app/build/reports/kover/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
/build | ||
|
||
# Google services | ||
google-services.json |
Oops, something went wrong.