Skip to content

Bump kotest from 5.7.2 to 5.8.0 #313

Bump kotest from 5.7.2 to 5.8.0

Bump kotest from 5.7.2 to 5.8.0 #313

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
# creates a new check with unit test results
checks: write
# needs to git diff the repo
contents: read
# find the pr for this commit
issues: read
# write artifacts and comment on pr related to this
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
cache: 'gradle'
- name: clean build
run: ./gradlew clean build --no-daemon --info --stacktrace
- name: Upload Test Results
# see ci-test.check.yml for workflow that publishes test results without security issues for forks
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: check-ci-results
path: '**/build/test-results/test/TEST-*.xml'