Skip to content

Commit 38d96b4

Browse files
authored
fix: vet (#256)
1 parent a0b310f commit 38d96b4

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

.github/workflows/vet.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Vet
22

3-
on:
3+
on:
44
pull_request:
55
branches:
66
- master
@@ -11,6 +11,14 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
- name: Setup Python
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.x'
18+
- name: Install Python dependencies
19+
run: pip install PyYAML
20+
- name: Generate config.yaml
21+
run: python3 generate_config.py
1422
- name: schema validate
1523
uses: nrkno/yaml-schema-validator-github-action@54e1fe495e281c451e1ece58808b6fd7710c30ed # v5.1.0
1624
with:
@@ -21,6 +29,14 @@ jobs:
2129
steps:
2230
- name: Checkout
2331
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
- name: Setup Python
33+
uses: actions/setup-python@v5
34+
with:
35+
python-version: '3.x'
36+
- name: Install Python dependencies
37+
run: pip install PyYAML
38+
- name: Generate config.yaml
39+
run: python3 generate_config.py
2440
- uses: mikefarah/yq@8bf425b4d1344db7cd469a8d10a390876e0c77fd # v4.45.1
2541
- name: duplicate repository tag check
2642
run: |

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.idea
1+
.idea
2+
config.yaml

0 commit comments

Comments
 (0)