Skip to content

Merge pull request #24 from arup-group/dependabot/pip/examples/pytest… #20

Merge pull request #24 from arup-group/dependabot/pip/examples/pytest…

Merge pull request #24 from arup-group/dependabot/pip/examples/pytest… #20

Workflow file for this run

name: Example for minimal setup
on:
push:
branches:
- master
permissions:
contents: write
deployments: write
jobs:
benchmark:
name: Run minimal steps to run github-action-benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Run benchmark
run: cd examples/go && go test -bench 'BenchmarkFib' | tee output.txt
- name: Download previous benchmark data
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- name: Store benchmark result
uses: arup-group/github-action-benchmark@v1
with:
tool: "go"
output-file-path: examples/go/output.txt
external-data-json-path: ./cache/benchmark-data.json
fail-on-alert: true