mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2024-11-16 17:00:14 +00:00
15 lines
432 B
YAML
15 lines
432 B
YAML
|
name: lint_python
|
||
|
on: [pull_request, push]
|
||
|
jobs:
|
||
|
lint_python:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: '3.11'
|
||
|
- run: pip install --upgrade pip wheel
|
||
|
- run: pip install bandit black codespell flake8 flake8-bugbear
|
||
|
flake8-comprehensions isort requests
|
||
|
- run: ./deploy.sh validate
|