Comment out pycodestyle lint.

This commit is contained in:
hodanov 2023-12-01 00:58:38 +09:00
parent 455a7dfcaa
commit 8aaf36af53

View File

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ['3.9', '3.10', '3.11'] python-version: ['3.10', '3.11']
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
@ -20,5 +20,5 @@ jobs:
pip install pycodestyle pyflakes pip install pycodestyle pyflakes
- name: Analysing the code with pycodestyle - name: Analysing the code with pycodestyle
run: | run: |
pycodestyle --first --ignore=F401,E501 $(git ls-files '*.py') # pycodestyle --first --ignore=F401,E501 $(git ls-files '*.py')
pyflakes $(git ls-files '*.py') pyflakes $(git ls-files '*.py')