Skip to content

Quality of life improvements #4

Quality of life improvements

Quality of life improvements #4

Workflow file for this run

name: Black Code Style Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
black:
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'
- name: Install black
run: pip install black
- name: Run black style check
run: black --check .