Skip to content

add reformat code

add reformat code #4

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
run: pip install poetry
- name: Reformat code
run: make ref
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions