Index files, sample plugin

This commit is contained in:
Rikko 2022-06-14 23:00:51 +05:30
parent 74721d6fd7
commit ef8f14e235
8 changed files with 475 additions and 8 deletions

23
.github/workflows/flake8.yml vendored Normal file
View 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')