feat(falcosidekick): added new ListenAddr
field in falcoEvent
(#196)
#49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: kitabisa/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 |