Skip to content

Add supporting kotest module #547

Add supporting kotest module

Add supporting kotest module #547

Workflow file for this run

name: Run benchmark
on:
push:
branches: [ main, '[0-9]*.[0-9]*.x' ]
pull_request:
branches: [ main, '[0-9]*.[0-9]*.x' ]
workflow_dispatch:
jobs:
jmh:
name: Run benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Execute benchmark
uses: gradle/[email protected]
with:
arguments: jmh
- name: Read benchmark result
id: csv
uses: juliangruber/read-file-action@v1
with:
path: ./fixture-monkey/build/results/jmh/results.csv
- name: Create Markdown table
uses: petems/csv-to-md-table-action@master
id: csv-table-output
with:
csvinput: ${{ steps.csv.outputs.content }}
- name: Print benchmark summary
run: echo "${{steps.csv-table-output.outputs.markdown-table}}" >> $GITHUB_STEP_SUMMARY