diff --git a/.github/workflows/python-format.yml b/.github/workflows/python-format.yml new file mode 100644 index 0000000..9f11ad3 --- /dev/null +++ b/.github/workflows/python-format.yml @@ -0,0 +1,27 @@ +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 + run: python -m pip install black + - name: Format code + run: black . + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: Apply auto-formatting + branch: ${{ github.head_ref }}