-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Wenxi Zeng <[email protected]>
- Loading branch information
1 parent
bba3dde
commit 27c64d0
Showing
3 changed files
with
17 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,16 +7,19 @@ on: | |
branches: [ main ] | ||
workflow_dispatch: | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
cancel_previous: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
workflow_id: ${{ github.event.workflow.id }} | ||
- uses: styfle/[email protected] | ||
with: | ||
workflow_id: ${{ github.event.workflow.id }} | ||
|
||
build: | ||
|
||
core-test: | ||
needs: cancel_previous | ||
runs-on: ubuntu-latest | ||
|
||
|
@@ -30,73 +33,8 @@ jobs: | |
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-core-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle-core- | ||
${{ runner.os }}-gradle- | ||
- name: Run Tests | ||
run: ./gradlew core:test | ||
- name: Generate coverage report | ||
run: ./gradlew core:codeCoverageReport | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v2 | ||
|
||
android-test: | ||
needs: cancel_previous | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: cache gradle dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-android-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle-android- | ||
- name: Run Tests | ||
run: ./gradlew android:test | ||
- name: Generate coverage report | ||
run: ./gradlew android:codeCoverageReport | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v2 | ||
|
||
destination-test: | ||
needs: cancel_previous | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: cache gradle dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-dest-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle-dest- | ||
- name: Run Tests | ||
run: ./gradlew samples:kotlin-android-app-destinations:test | ||
- name: Generate coverage report | ||
run: ./gradlew samples:kotlin-android-app-destinations:codeCoverageReport | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v2 | ||
|
||
security: | ||
needs: cancel_previous | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Snyk | ||
run: ./gradlew snyk-test | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
run: ./gradlew check |
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