Skip to content

temp: Make slow

temp: Make slow #3

Workflow file for this run

name: Benchmarks
on:
push:
branches:
- bgins/feat-add-matching-sorts
jobs:
run-solver-benchmarks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install golang
uses: actions/setup-go@v5
- name: Run benchmarks
run: ./stack benchmarks-solver | tee assets/benchmark-output.txt
- name: Download previous benchmark data
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- name: Store benchmark results
uses: benchmark-action/github-action-benchmark@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tool: 'go'
output-file-path: assets/benchmark-output.txt
external-data-json-path: ./cache/benchmark-data.json
comment-on-alert: true