Skip to content

test: update with FalcoSidekickURL case (#163) #36

test: update with FalcoSidekickURL case (#163)

test: update with FalcoSidekickURL case (#163) #36

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-dev]
runs-on: ubuntu-latest
env:
out: benchmark.out
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: go mod download
- 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 != 'initialize' && true || false }}
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-on-alert: true