Skip to content

Updated depenencies;kotlin 2.0.0 #127

Updated depenencies;kotlin 2.0.0

Updated depenencies;kotlin 2.0.0 #127

Workflow file for this run

name: "Pull request build"
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: "Tests and code analysis"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Configure JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run tests
run: ./gradlew testDebugUnitTest
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure()
with:
report_paths: '**/build/test-results/**/TEST-*.xml'
- name: Run static analysis
run: ./gradlew ktlintCheck detekt