File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Validate Vector Configuration
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+
11+ jobs :
12+ validate-vector-config :
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+ - name : Checkout repository
17+ uses : actions/checkout@v4
18+
19+ - name : Set up Python
20+ uses : actions/setup-python@v4
21+ with :
22+ python-version : ' 3.9'
23+
24+ - name : Install dependencies
25+ run : |
26+ sudo apt-get update
27+ sudo apt-get install -y wget tar
28+ make install-dependencies
29+ make install-dev-dependencies
30+
31+ # - name: Generate Vector configuration
32+ # run: make generate-vector-conf
33+
34+ # - name: Validate Vector configuration
35+ # run: make validate-vector-conf
36+
37+ - name : Gen-Validate-Test Vector transforms
38+ run : make test-vector-transforms
You can’t perform that action at this time.
0 commit comments