🎨 Address cache key warnings #17462
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code quality checks | |
| # Run this workflow every time a new commit pushed to your repository | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - stable/* | |
| tags: | |
| - '*' | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| ruff: | |
| name: Ruff - lint and check code formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Determine ruff version | |
| id: ruff-version | |
| run: | | |
| version=$(grep -oP '(?<=ruff==)\d+\.\d+\.\d+' requirements/ci.txt) | |
| echo "version=$version" >> $GITHUB_OUTPUT | |
| - uses: astral-sh/ruff-action@0ce1b0bf8b818ef400413f810f8a11cdbda0034b # v4.0.0 (runs ruff check) | |
| with: | |
| version: "${{ steps.ruff-version.outputs.version }}" | |
| - run: ruff format --check --diff | |
| migrations: | |
| name: Check for model changes not present in the migrations or default_admin_index fixture | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:15 | |
| env: | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| ports: | |
| - 5432:5432 | |
| # Needed because the postgres container does not provide a healthcheck | |
| options: | |
| --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Set up backend environment | |
| uses: ./.github/actions/setup-backend | |
| with: | |
| setup-node: 'no' | |
| optimize-postgres: 'no' | |
| - name: Run manage.py makemigrations --check --dry-run | |
| run: | | |
| src/manage.py makemigrations --check --dry-run | |
| env: | |
| DJANGO_SETTINGS_MODULE: openforms.conf.ci | |
| DEBUG: 'true' | |
| SECRET_KEY: dummy | |
| DB_USER: postgres | |
| DB_NAME: postgres | |
| DB_PASSWORD: '' | |
| - name: Load default_admin_index fixture and run manage.py check_admin_index | |
| run: | | |
| src/manage.py migrate | |
| src/manage.py loaddata default_admin_index | |
| src/manage.py check_admin_index | |
| env: | |
| DJANGO_SETTINGS_MODULE: openforms.conf.ci | |
| SECRET_KEY: dummy | |
| DB_USER: postgres | |
| DB_NAME: postgres | |
| DB_PASSWORD: '' | |
| dependencies: | |
| name: Lint dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3.12' | |
| - name: Run linter | |
| run: python ./bin/lint_dependencies.py | |
| type-checking: | |
| name: Type checking (Pyright) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3.12' | |
| - name: Install additional dependencies | |
| run: | | |
| pip install uv | |
| uv pip install \ | |
| --system \ | |
| -r requirements/type-checking.txt | |
| - name: Create dummy local.py settings file | |
| run: touch src/openforms/conf/local.py | |
| - uses: jakebailey/pyright-action@8ec14b5cfe41f26e5f41686a31eb6012758217ef # v3.0.2 | |
| with: | |
| version: 1.1.407 | |
| project: pyright.pyproject.toml | |
| zizmor: | |
| name: GitHub Actions Security Analysis with zizmor 🌈 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Run zizmor 🌈 | |
| uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6 |