Skip to content

Update plugin org.jetbrains.kotlin.jvm to v1.9.23 #219

Update plugin org.jetbrains.kotlin.jvm to v1.9.23

Update plugin org.jetbrains.kotlin.jvm to v1.9.23 #219

Workflow file for this run

name: run checks
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize ]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'zulu'
- name: Verify project consistency
run: cd .test && ./gradlew test
- name: spotless check (test project)
run: cd .test && ./gradlew spotlessCheck
- name: spotless check (root project)
run: ./gradlew spotlessCheck
- name: Generate tests for every solution
run: cd .test && ./gradlew generateTests
- name: Navigate to root project
run: cd .test
- name: Run generated solution tests
run: ./gradlew test --tests "generated.com.igorwojda.*"
- uses: actions/upload-artifact@v3
with:
name: unit-test-report
path: ./**/build/reports/tests/