Bump alpine from 3.21.2 to 3.22.2 #118
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: Check Python Formatting | |
| on: [push, pull_request] | |
| jobs: | |
| check-formatting: | |
| name: Check formatting with Black | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check file formatting | |
| run: | | |
| pip install black | |
| black --check . |