Skip to content

AAP-90162 Unify RBAC assignment integrations on the bulk signals #3173

AAP-90162 Unify RBAC assignment integrations on the bulk signals

AAP-90162 Unify RBAC assignment integrations on the bulk signals #3173

Workflow file for this run

---
name: Sanity
env:
LC_ALL: "C.UTF-8" # prevent ERROR: Ansible could not initialize the preferred locale: unsupported locale setting
on:
pull_request:
push:
branches:
- devel
- "stable-*"
jobs:
help_text:
name: Help Test Check
runs-on: ubuntu-latest
permissions:
packages: read
contents: read
strategy:
fail-fast: false
steps:
- name: Install make
run: sudo apt install make
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
show-progress: false
persist-credentials: false
- name: Install build requirements
run: sudo apt-get update && sudo apt-get install -y libsasl2-dev libldap2-dev libssl-dev libxmlsec1-dev
- name: Install python 3.12
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: 3.12
- name: Install requirements
run: pip3.12 install -r requirements/requirements_all.txt -r requirements/requirements_dev.txt
- name: Run help text check
run: ./manage.py help_text_check --applications=dab --ignore-file=./.help_text_check.ignore
- name: Validate OpenAPI Specification
run: |
./manage.py spectacular --format openapi-json --file dab-openapi.json
openapi-spec-validator dab-openapi.json
echo "✅ OpenAPI schema validation passed"