Add workflow to run pep8 check

This commit is contained in:
Takashi Kajinami 2025-06-09 21:41:53 +09:00
parent 62fdd838ef
commit c37fad851f
1 changed files with 19 additions and 0 deletions

19
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update pip and setuptools
run: |
python -m pip install --upgrade pip
python -m pip install setuptools
- name: Install dependencies
run: |
python -m pip install flake8
- name: Lint with flake8
run: |
flake8