Some checks failed
CI Deploy Checks / Build Container (push) Successful in 6s
CI Quality / Ruff Lint (push) Failing after 6s
CI Tests / Django Tests (push) Has been cancelled
CI Tests / OpenAPI Schema (push) Has been cancelled
CI Security / Bandit + pip-audit (push) Has been cancelled
27 lines
469 B
YAML
27 lines
469 B
YAML
name: CI Quality
|
|
|
|
on:
|
|
push:
|
|
branches: [main, develop]
|
|
pull_request:
|
|
branches: [main, develop]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Ruff Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
cache: pip
|
|
|
|
- name: Install lint tools
|
|
run: pip install ruff
|
|
|
|
- name: Ruff lint check
|
|
run: ruff check .
|