mirror of
https://github.com/tubearchivist/tubearchivist
synced 2024-11-06 09:20:27 +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.10'
|
|
- run: pip install --upgrade pip wheel
|
|
- run: pip install bandit black codespell flake8 flake8-bugbear
|
|
flake8-comprehensions isort requests
|
|
- run: ./deploy.sh validate
|