Remove unnecessary WCM_PAD flag and clean up WCM_LCD #189
Workflow file for this run
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
| on: [ push, pull_request ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| python-black: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - run: pip install black | |
| - run: black test/ | |
| - run: git diff --exit-code || (echo "Please run black to reformat Python files" && false) | |