tetragon: Add killer test for security hook #299
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
name: Run veristat | |
on: | |
push: | |
branches: | |
- main | |
- v* | |
paths: | |
- 'bpf/**' | |
pull_request: | |
paths: | |
- 'bpf/**' | |
jobs: | |
veristat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Build BPF programs | |
run: make tetragon-bpf | |
- name: Run veristat | |
uses: mtardy/veristat-action@35c8885118c1b3046f6a5fdedf1cc5670e584cf9 # v1.0.0 | |
with: | |
programs: "bpf/objs/*.o" |