diff --git a/.github/workflows/python-code-format.yml b/.github/workflows/python-code-format.yml index 42d4b65..d6b1cd8 100644 --- a/.github/workflows/python-code-format.yml +++ b/.github/workflows/python-code-format.yml @@ -40,13 +40,13 @@ jobs: if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - name: Analyzing the code with pylint run: | - python -m pylint intg-appletv + python -m pylint intg-dunehd - name: Lint with flake8 run: | - python -m flake8 intg-appletv --count --show-source --statistics + python -m flake8 intg-dunehd --count --show-source --statistics - name: Check code formatting with isort run: | - python -m isort intg-appletv/. --check --verbose + python -m isort intg-dunehd/. --check --verbose - name: Check code formatting with black run: | python -m black intg-dunehd --check --verbose --line-length 120