Skip to content

Commit 67cee10

Browse files
committed
Add GitHub Actions workflow to run validate_plugins.py
1 parent db18b1c commit 67cee10

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/validate.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Validate Plugins
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
validate:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.12'
19+
20+
- name: Run Plugin Validator
21+
run: python3 validate_plugins.py

0 commit comments

Comments
 (0)