Skip to content

ci: workflow python black linting #1

ci: workflow python black linting

ci: workflow python black linting #1

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"