Merge pull request #60 from hodanov/feature/enable_output_avif

Add ignore linter.
This commit is contained in:
hodanov 2023-12-01 01:07:35 +09:00 committed by GitHub
commit 2d1c1ffc4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 }}
@ -17,8 +17,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install pycodestyle pyflakes pip install pycodestyle
- name: Analysing the code with pycodestyle - name: Analysing the code with pycodestyle
run: | run: |
pycodestyle --first --ignore='E501,E401' $(git ls-files '*.py') pycodestyle --first --ignore=E501 $(git ls-files '*.py')
pyflakes $(git ls-files '*.py')