21 lines
601 B
YAML
21 lines
601 B
YAML
name: lint_python
|
|
on: [pull_request, push]
|
|
jobs:
|
|
lint_python:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Install system dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libldap2-dev libsasl2-dev libssl-dev
|
|
- name: Install python dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r tubearchivist/requirements-dev.txt
|
|
- name: Run Linter
|
|
run: ./deploy.sh validate
|