Skip to content

Commit ca321cc

Browse files
Test workflow
1 parent c71c903 commit ca321cc

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/test-tracker.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Test eBPF Tracker
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: read
11+
packages: read
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Start eBPF tracker (stdio mode)
18+
uses: ./
19+
with:
20+
output: stdio
21+
22+
- name: Generate TCP traffic (curl)
23+
run: |
24+
curl -sS --max-time 5 https://example.com -o /dev/null
25+
curl -sS --max-time 5 https://github.com -o /dev/null
26+
27+
- name: Generate UDP traffic (DNS)
28+
run: |
29+
dig +short example.com @8.8.8.8
30+
dig +short github.com @1.1.1.1

0 commit comments

Comments
 (0)