Skip to content

Merge pull request #183 from Stegallo/2015 #136

Merge pull request #183 from Stegallo/2015

Merge pull request #183 from Stegallo/2015 #136

Workflow file for this run

name: Run Black
on:
push:
branches: [ master ]
jobs:
runsBlack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v1
with:
python-version: 3.x
- run: pip install black isort
- run: isort .
- run: black .
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: format code with black
title: Black Formatting
body: format code with black
branch: black-format