Skip to content

Commit

Permalink
fix(ci): remove obsolete poetry dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
EuleMitKeule committed May 10, 2023
1 parent 59bfb23 commit 5ca151f
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
pip install black
- name: Run black
run: |
poetry run black --check --diff custom_components/template_media_player
python -m black --check --diff custom_components/template_media_player
isort:
runs-on: ubuntu-latest
Expand All @@ -32,9 +36,13 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
pip install isort
- name: Run isort
run: |
poetry run isort --check-only --diff custom_components/template_media_player
python -m isort --check-only --diff custom_components/template_media_player
mypy:
runs-on: ubuntu-latest
Expand All @@ -47,9 +55,13 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
pip install mypy
- name: Run mypy
run: |
poetry run mypy custom_components/template_media_player
python -m mypy custom_components/template_media_player
bandit:
runs-on: ubuntu-latest
Expand All @@ -62,9 +74,13 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
pip install bandit
- name: Run bandit
run: |
poetry run bandit -r custom_components/template_media_player
python -m bandit -r custom_components/template_media_player
hassfest:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5ca151f

Please sign in to comment.