[MOBL-1399] Events module rewrite in Kotlin language #19
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: Run Unit Tests (PR) | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Use gradle wrapper (if applicable) | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Grant execute permissions for gradlew | |
run: chmod +x gradlew | |
- name: Run unit tests | |
run: ./gradlew test |