diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 6e45a60..e891ef4 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11.4"] + python-version: ["3.9", "3.10", "3.11.4"] steps: - name: Checkout uses: actions/checkout@v3 @@ -26,15 +26,16 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install --global-option='build_ext' \ + --global-option='-I/usr/local/include' \ + --global-option='-L/usr/local/lib' \ + pyaudio pip install -r requirements.txt pip install pylint reorder-python-imports pip install mypy reorder-python-imports pip install wemake-python-styleguide reorder-python-imports pip install black reorder-python-imports - pip install --global-option='build_ext' \ - --global-option='-I/usr/local/include' \ - --global-option='-L/usr/local/lib' \ - pyaudio + - name: Analysing the code with pylint id: pylint continue-on-error: true