Skip to content

Bump org.junit.jupiter:junit-jupiter from 5.12.1 to 5.12.2 in the kotlin group #68

Bump org.junit.jupiter:junit-jupiter from 5.12.1 to 5.12.2 in the kotlin group

Bump org.junit.jupiter:junit-jupiter from 5.12.1 to 5.12.2 in the kotlin group #68

Workflow file for this run

name: 'Testing'
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
gradle-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Run tests
run: ./gradlew test