Bugfix/LS24003795/Incongruous definifion between two DS by using API #855
Workflow file for this run
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
name: Unit Test | |
on: | |
pull_request: | |
branches: | |
- master | |
- develop | |
workflow_dispatch: | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: zulu | |
- uses: gradle/actions/setup-gradle@v4 | |
- name: Checking kotlin formatting | |
run: ./gradlew ktlintCheck | |
- name: Compiling and test | |
run: ./gradlew check |