Bump redis from 5.0.2 to 8.1.0 in /backend #151
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: GraphQL schema | |
| on: | |
| pull_request: | |
| paths: | |
| - "backend/**" | |
| - ".github/workflows/graphql-schema.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| schema: | |
| name: Generated schema is up to date | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13.5" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b | |
| with: | |
| version: "0.12.5" | |
| enable-cache: true | |
| - name: Install dependencies | |
| working-directory: backend | |
| run: uv sync --locked --no-dev | |
| - name: Generate schema | |
| working-directory: backend | |
| run: uv run --no-sync python manage.py graphql_schema | |
| env: | |
| DJANGO_SETTINGS_MODULE: pycon.settings.test | |
| STRIPE_SECRET_API_KEY: "" | |
| STRIPE_SUBSCRIPTION_PRICE_ID: "" | |
| STRIPE_WEBHOOK_SIGNATURE_SECRET: "" | |
| CELERY_BROKER_URL: "" | |
| CELERY_RESULT_BACKEND: "" | |
| - name: Check committed schema | |
| run: git diff --exit-code -- backend/schema.graphql |