Add workflow for automatic formatting
This commit is contained in:
parent
3297f1e518
commit
9111c5dbc1
16
.github/workflows/black.yml
vendored
Normal file
16
.github/workflows/black.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Black
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
format_code:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- run: pip install --upgrade pip
|
||||
- run: pip install black[jupyter]
|
||||
- run: black $(git ls-files '*.py' 'ipynb')
|
Loading…
Reference in New Issue
Block a user