Skip to content

refactor(*): mod rename (#197) #50

refactor(*): mod rename (#197)

refactor(*): mod rename (#197) #50

Workflow file for this run

on:
push:
branches:
- master
paths:
- "**.go"
- "go.mod"
workflow_call:
workflow_dispatch:
name: regression
jobs:
regression:
strategy:
matrix:
phase: [initialize, analyze]
runs-on: ubuntu-latest
env:
out: benchmark.out
steps:
- uses: actions/checkout@v4
- uses: teler-sh/actions/setup-go@v1
- uses: teler-sh/teler-resources/cache@master
- run: make bench-${{ matrix.phase }} | tee ${{ env.out }}
- uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark-${{ matrix.phase }}
- uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'go'
output-file-path: ${{ env.out }}
external-data-json-path: ./cache/benchmark-data-${{ matrix.phase }}.json
fail-on-alert: ${{ matrix.phase == 'analyze' && true || false }}
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-on-alert: ${{ matrix.phase == 'analyze' && true || false }}
summary-always: true