Skip to content

Create pull_request_template.md #35

Create pull_request_template.md

Create pull_request_template.md #35

Workflow file for this run

# This pipeline enforces the black formatter on PRs
# More information can be found at:
# https://black.readthedocs.io/en/stable/integrations/github_actions.html
name: black
on: pull_request
jobs:
black:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.9
- run: |
python -m pip install --upgrade pip
pip install black
- run: |
black --check .