mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2025-03-14 01:40:12 +00:00
43 lines
963 B
YAML
43 lines
963 B
YAML
name: lint_python
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**/*.py'
|
|
pull_request:
|
|
paths:
|
|
- '**/*.py'
|
|
|
|
jobs:
|
|
lint_python:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install system dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gcc libldap2-dev libsasl2-dev libssl-dev
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Cache pip
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
|
|
- 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
|