Skip to content

Bump org.junit.jupiter:junit-jupiter-engine in /kotlin-junit5 #678

Bump org.junit.jupiter:junit-jupiter-engine in /kotlin-junit5

Bump org.junit.jupiter:junit-jupiter-engine in /kotlin-junit5 #678

Workflow file for this run

name: Build
on: [pull_request, push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Skip duplicates and docs
id: skip
uses: fkirc/skip-duplicate-actions@v5
with:
paths_ignore: '["**/README.md", "LICENSE", ".gitignore", ".editorconfig", ".idea/**"]'
- name: Validate gradle wrapper
if: steps.skip.outputs.should_skip != 'true'
uses: gradle/wrapper-validation-action@v3
- name: Setup JDK
if: steps.skip.outputs.should_skip != 'true'
uses: actions/setup-java@v4
with:
java-version: 21
cache: gradle
distribution: temurin
- name: "Build with Gradle"
if: steps.skip.outputs.should_skip != 'true'
run: ./gradlew build