Skip to content

Commit

Permalink
Remove tox requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
fronzbot authored Jun 7, 2024
1 parent 33f1c31 commit 899442b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
lint:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: [3.11]
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand All @@ -27,7 +27,8 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install tox
- name: Lint
run: |
tox -r -e lint
ruff check blinkpy tests blinkapp
black --check --color --diff blinkpy tests blinkapp
rst-lint README.rst CHANGES.rst CONTRIBUTING.rst

0 comments on commit 899442b

Please sign in to comment.