Skip to content

Bump io.mockk:mockk from 1.13.14 to 1.13.16 #64

Bump io.mockk:mockk from 1.13.14 to 1.13.16

Bump io.mockk:mockk from 1.13.14 to 1.13.16 #64

Workflow file for this run

name: benchmark
on:
pull_request:
path-ignore:
- 'docs/**'
- 'README.md'
permissions:
contents: write
pull-requests: write
env:
JDK_VERSION: 21
GRADLE_OPTS: -Dorg.gradle.daemon=false
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up JDK ${{ env.JDK_VERSION }}
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '${{ env.JDK_VERSION }}'
cache: 'gradle'
- name: Build and Run JMH benchmarks
run: ./gradlew :benchmarks:jmh
- name: JMH Benchmark Action
uses: kitlangton/jmh-benchmark-action@ea96a79ecacbec56b6bb17aafb90275bfbf26ebb
with:
jmh-output-path: benchmarks/build/reports/jmh/results.json
github-token: ${{ secrets.GITHUB_TOKEN }}