Skip to content

😊 Black Format #70

😊 Black Format

😊 Black Format #70

Workflow file for this run

name: Black Linter
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Black
run: pip install black
- name: Run Black
run: black --check .