Skip to content

Update README.md

Update README.md #50

Workflow file for this run

name: Python Formatting
on: [push]
jobs:
format-code:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install black, isort, and nbQA
run: |
python -m pip install black isort nbqa
- name: Format code with black
run: black .
- name: Sort imports with isort
run: isort .
- name: Format Jupyter Notebooks with nbQA
run: |
nbqa black .
nbqa isort .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply auto-formatting
branch: ${{ github.head_ref }}