name: CI - Lint on: workflow_call: workflow_dispatch: jobs: lint: runs-on: ubuntu-latest env: APT_CACHER_NG: http://192.168.88.14:3142 steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: python-version: "3.12" - name: Configure apt proxy run: | if [ -n "${APT_CACHER_NG}" ]; then echo "Acquire::http::Proxy \"${APT_CACHER_NG}\";" | tee /etc/apt/apt.conf.d/01apt-cacher-ng fi - name: Install system packages run: | apt-get update apt-get install -y build-essential libpq-dev - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install -r requirements-test.txt - name: Run Ruff run: ruff check . - name: Run Black run: black --check . - name: Run Bandit run: bandit -c pyproject.toml -r tests