Skip to content

Testing

Testing #52

Workflow file for this run

name: Testing
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Configure JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 17
- name: Unit Test
run: ./gradlew testDebugUnitTest