Improves code PEP8 compliance and adds ruff check

This commit is contained in:
tek
2023-03-01 16:43:08 -05:00
parent fc4e2a9029
commit 4ed8ff51ff
26 changed files with 79 additions and 57 deletions

21
.github/workflows/ruff.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Ruff
on: [push]
jobs:
ruff_py3:
name: Ruff syntax check
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
architecture: x64
- name: Checkout
uses: actions/checkout@master
- name: Install Dependencies
run: |
pip install ruff
- name: ruff
run: |
ruff check .