mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-11-07 17:36:00 +00:00
Index files, sample plugin
This commit is contained in:
parent
74721d6fd7
commit
ef8f14e235
8 changed files with 475 additions and 8 deletions
23
.github/workflows/flake8.yml
vendored
Normal file
23
.github/workflows/flake8.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Flake8
|
||||
|
||||
on: [push]
|
||||
|
||||
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: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install flake8
|
||||
- name: Execute Flake8
|
||||
run: |
|
||||
flake8 $(git ls-files '*.py')
|
||||
Loading…
Add table
Add a link
Reference in a new issue