Skip to content

Bump kotestVersion from 5.6.2 to 5.7.2 #316

Bump kotestVersion from 5.6.2 to 5.7.2

Bump kotestVersion from 5.6.2 to 5.7.2 #316

Workflow file for this run

name: CI Pipeline
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [8, 11]
name: Java ${{ matrix.java }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: adopt-hotspot
- name: Cache Gradle packages
uses: actions/cache@v3.3.1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build with Gradle
run: ./gradlew check jacocoTestReport