Bump to v1.28 of Micropython #269
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 Linting | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Python Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Install Python | |
| uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 | |
| with: | |
| python-version: '3.13' | |
| - name: Install Python Deps | |
| run: source ci/python.sh && qa_prepare_all | |
| - name: Lint MicroPython Frozen Libs | |
| shell: bash | |
| run: source ci/python.sh && qa_libs_check | |
| - name: Lint MicroPython Examples | |
| shell: bash | |
| run: source ci/python.sh && qa_examples_check | |
| - name: Lint MicroPython PicoFX | |
| shell: bash | |
| run: source ci/python.sh && qa_picofx_check |