black wip 8 #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python formatting | |
on: [push, pull_request] | |
jobs: | |
python-format: | |
name: Check python fomatting with black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/[email protected] | |
with: | |
version: "24.8.0" | |
src: ./scripts | |
# override options so that we can specify only specific files for now | |
# --skip-string-normalization to reduce initial churn | |
options: "--check --diff --skip-string-normalization --include=.*addr2line.*" |