Skip to content

Create a scripted demo environment that works around the operator while it's broken. #1059

Create a scripted demo environment that works around the operator while it's broken.

Create a scripted demo environment that works around the operator while it's broken. #1059

name: Check Python Formatting
permissions:
contents: read
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/python-formatting.yml'
- 'pyproject.toml'
- 'Makefile'
- '**.py'
jobs:
format-check:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Check for formatting
run: make format-check