Skip to content

Merge pull request #11 from belowlab/refactor #28

Merge pull request #11 from belowlab/refactor

Merge pull request #11 from belowlab/refactor #28

Workflow file for this run

name: black
on:
push:
branches:
- main
paths-ignore:
- "**/conf.py"
- "tests/**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose"
auto_fix: ${{ github.event_name == 'pull_request' }}