Skip to content

Commit

Permalink
enable python formatting with black (#21)
Browse files Browse the repository at this point in the history
This is the same formatter as LLVM is using.
  • Loading branch information
ftynse authored Dec 15, 2023
1 parent 4fdbf9f commit 9c89a54
Show file tree
Hide file tree
Showing 7 changed files with 808 additions and 545 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/python_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Python-Black

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose"
Loading

0 comments on commit 9c89a54

Please sign in to comment.