Skip to content

Merge branch 'release/0.2.7' #256

Merge branch 'release/0.2.7'

Merge branch 'release/0.2.7' #256

Workflow file for this run

name: Format and lint
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: fetch code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pipx install nox
- name: format and lint
run: nox -s fmt
- name: push any changes
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'actions@github.com'
git commit -am 'Format [Automated]' && git push || true