Skip to content

Commit 30ad135

Browse files
authored
Create validate-vector-config.yml
Pipeline для проверки
1 parent 7ff01e5 commit 30ad135

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

0 commit comments

Comments
 (0)