Merge pull request #60 from hodanov/feature/enable_output_avif
Add ignore linter.
This commit is contained in:
commit
2d1c1ffc4c
7
.github/workflows/lint_python.yml
vendored
7
.github/workflows/lint_python.yml
vendored
@ -7,7 +7,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.9', '3.10', '3.11']
|
||||
python-version: ['3.10', '3.11']
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
@ -17,8 +17,7 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pycodestyle pyflakes
|
||||
pip install pycodestyle
|
||||
- name: Analysing the code with pycodestyle
|
||||
run: |
|
||||
pycodestyle --first --ignore='E501,E401' $(git ls-files '*.py')
|
||||
pyflakes $(git ls-files '*.py')
|
||||
pycodestyle --first --ignore=E501 $(git ls-files '*.py')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user