Skip to content

Feat: code quality check and automated test in ci #2

Feat: code quality check and automated test in ci

Feat: code quality check and automated test in ci #2

Workflow file for this run

name: test
on:
workflow_dispatch:
pull_request:
workflow_run:
workflows:
- checkstyle
types:
- completed
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