json2code: convert boost integer_range to std iota_view #14
This file contains hidden or 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 format | |
| on: [push, pull_request] | |
| jobs: | |
| python-format: | |
| name: Enforce python format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: psf/black@24.8.0 | |
| with: | |
| version: "24.8.0" | |
| src: ./scripts | |
| # override options so that we can specify only specific files for now | |
| options: "--check --diff --include=.*addr2line.*" |