Skip to content
This repository was archived by the owner on Mar 29, 2026. It is now read-only.

Do not run CI for changes in Readme #174

Do not run CI for changes in Readme

Do not run CI for changes in Readme #174

Workflow file for this run

name: Black
env:
PYTHONUNBUFFERED: 1
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
black:
runs-on: ubuntu-latest
steps:
- 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==23.7.0
- name: Check code with black
run: black --check --diff --color .