Update dependency org.jetbrains.kotlin.android to v2 #577
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: Perform tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
- 'release*' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Run tests | |
run: ./gradlew zoomable:testDebugUnitTest |