Skip to content

test

test #7

Workflow file for this run

name: test
on:
workflow_dispatch:
workflow_run:
workflows:
- "checkstyle"
types:
- completed
branches:
- 'feature/**'
- 'hotfix/**'
- 'release/**'
- 'fix/**'
jobs:
test_unit:
runs-on:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run debug unit test
run: ./gradlew testDebugUnitTest
- name: Run release unit test
run: ./gradlew testReleaseUnitTest