Skip to content

try once more to trigger the workflow #1

try once more to trigger the workflow

try once more to trigger the workflow #1

Workflow file for this run

name: Check Python Code Formatting
on:
pull_request:
branches:
- main
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12.x"
- name: Install Black
run: pip install black
- name: Run Black
run: black . --check