Skip to content

feat: basic authn benchmark #19

feat: basic authn benchmark

feat: basic authn benchmark #19

Workflow file for this run

name: Benchmarks
on:
push:
branches:
- main
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run Benchmarks
run: ./run-benchmarks.sh
working-directory: ./benchmark
- name: Upload Results
uses: actions/[email protected]
with:
name: Benchmark Results
path: ./benchmark/jmh-result.json
- name: Comment With Results
uses: actions/github-script@v7
with:
script: |
const postBenchmarkComment = require('./github/scripts/benchmark-comment.js');
await postBenchmarkComment({github, context, './benchmark/jmh-result.json'});