Skip to content

Commit

Permalink
Merge pull request #19 from pseudoankit/git-action
Browse files Browse the repository at this point in the history
added ut check
  • Loading branch information
pseudoankit authored Jan 19, 2024
2 parents a2467d7 + 2bf5df4 commit d8d560b
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,40 +23,40 @@ jobs:
name: lint-results
path: app/build/reports/lint-results-debug.html

# unit-test:
# needs: [lint]
# runs-on: ubuntu-latest
# steps:
# - name: Checkout the code
# uses: actions/checkout@v2
#
# - name: Run tests
# run: ./gradlew test
#
# - name: Upload test report
# uses: actions/upload-artifact@v2
# with:
# name: unit_test_report
# path: app/build/reports/tests/testDebugUnitTest/
#
# instrumentation-test:
# needs: [unit-test]
# runs-on: macos-latest
# steps:
# - name: Checkout the code
# uses: actions/checkout@v2
#
# - name: Run espresso tests
# uses: reactivecircus/android-emulator-runner@v2
# with:
# api-level: 29
# script: ./gradlew connectedCheck
#
# - name: Upload test report
# uses: actions/upload-artifact@v2
# with:
# name: instrumentation_test_report
# path: app/build/reports/androidTests/connected/
unit-test:
# needs: [ lint ]
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2

- name: Run tests
run: ./gradlew test

- name: Upload test report
uses: actions/upload-artifact@v2
with:
name: unit_test_report
path: app/build/reports/tests/testDebugUnitTest/

# instrumentation-test:
# needs: [unit-test]
# runs-on: macos-latest
# steps:
# - name: Checkout the code
# uses: actions/checkout@v2
#
# - name: Run espresso tests
# uses: reactivecircus/android-emulator-runner@v2
# with:
# api-level: 29
# script: ./gradlew connectedCheck
#
# - name: Upload test report
# uses: actions/upload-artifact@v2
# with:
# name: instrumentation_test_report
# path: app/build/reports/androidTests/connected/

static-code-analysis:
# needs: [instrumentation-test]
Expand Down

0 comments on commit d8d560b

Please sign in to comment.