Skip to content

chore: fixes e2e pkg. #1616

chore: fixes e2e pkg.

chore: fixes e2e pkg. #1616

Workflow file for this run

name: Performance Regression Check
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "LICENSE"
pull_request:
paths-ignore:
- "**/*.md"
- "LICENSE"
jobs:
benchmark:
name: Performance regression check
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '>=1.19.0'
- name: Install dependencies
run: go get ./...
# Run benchmark with `go test -bench` and stores the output to a file
- name: Run benchmark
run: |
go test -bench=. ./... | tee output.txt
exit ${PIPESTATUS[0]}
# Download previous benchmark result from cache (if exists)
- name: Download previous benchmark data
uses: actions/cache@v3
with:
path: ./cache
key: ${{ runner.os }}-benchmark
# Run `github-action-benchmark` action
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
# What benchmark tool the output.txt came from
tool: 'go'
# Where the output from the benchmark tool is stored
output-file-path: output.txt
# Where the previous data file is stored
external-data-json-path: ./cache/benchmark-data.json
# Workflow will fail when an alert happens
fail-on-alert: true
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-on-alert: true
alert-comment-cc-users: '@corazawaf/core-developers'
# Upload the updated cache file for the next job by actions/cache