Skip to content

.

. #5

Workflow file for this run

name: Reformat code
on: push
permissions:
contents: write
jobs:
reformat-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup poetry and dev requirements
run: |
pip install poetry
poetry install --with dev
- name: Reformat code
run: make ref
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions