Skip to content

Bump the pip group with 37 updates #157

Bump the pip group with 37 updates

Bump the pip group with 37 updates #157

Workflow file for this run

name: Reformat
on:
pull_request:
push:
branches:
- main
merge_group:
workflow_dispatch:
jobs:
reformat:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.WORKFLOW_COMMIT }}
- name: 📦 Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: 🔨 Install
run: pip install -r requirements.txt
- name: 🧹 Reformat python
run: black .
- name: 🧹 Reformat markdown
run: mdformat README.md
- name: ⬆️ Commit changes
if: github.ref != 'refs/heads/main'
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Reformat