There was an error while loading. Please reload this page.
1 parent c71c903 commit ca321ccCopy full SHA for ca321cc
1 file changed
.github/workflows/test-tracker.yml
@@ -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
29
+ dig +short example.com @8.8.8.8
30
+ dig +short github.com @1.1.1.1
0 commit comments