Skip to content

Add maintenance status command #477

Add maintenance status command

Add maintenance status command #477

Workflow file for this run

# Lint Python - Black
# This action lints python using black - a python code formatter.
# https://github.com/psf/black
# This does not format the code, this only detects and informs on issues.
# To format with black, run `black .` locally in the repository.
---
name: Black
on:
push:
paths:
- "**.py"
pull_request:
paths:
- "**.py"
jobs:
PythonLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check code lints with Black
uses: jpetrucciani/black-check@master