Skip to content

New release v2.8.0 - No more Python 3.7 #938

New release v2.8.0 - No more Python 3.7

New release v2.8.0 - No more Python 3.7 #938

# 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"
env:
INPUT_VERSION: 24.1.1
jobs:
PythonLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
version: ${{ env.INPUT_VERSION }}