refactor: batch update bpf elements #8
Workflow file for this run
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: BPF Test | |
on: | |
pull_request: | |
paths: | |
- "**/*.c" | |
- "**/*.h" | |
- "go.mod" | |
- "go.sum" | |
- ".github/workflows/bpf-test.yml" | |
permissions: read-all | |
jobs: | |
bpf_tests: | |
name: BPF Unit Test | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Run BPF tests | |
run: | | |
git submodule update --init | |
sudo make ebpf-test || (echo "Run 'make ebpf-test' locally to investigate failures"; exit 1) | |