mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
New Workflow
This commit is contained in:
parent
f6bf4d3bd4
commit
2ab9fcc887
1 changed files with 22 additions and 0 deletions
22
.github/workflows/MetaData.yml
vendored
Normal file
22
.github/workflows/MetaData.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
name: MetaDataCheck
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ["3.10"]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v3
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Check MetaData
|
||||||
|
run: |
|
||||||
|
echo "Analyzing All Py Files"
|
||||||
|
cat $(git ls-files '*.py') | grep "# ba_meta require api 7"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue