Skip to content

Commit

Permalink
v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Aug 25, 2023
1 parent de65ae8 commit 7958799
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7958799

Please sign in to comment.