Skip to content

Commit

Permalink
Merge pull request #5 from pimoroni/patch-ci-latest
Browse files Browse the repository at this point in the history
CI tweaks
  • Loading branch information
Gadgetoid authored Sep 17, 2024
2 parents 7081443 + fcbebe8 commit f503cc4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/micropython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
build:
name: ${{ matrix.name }} (${{ matrix.board }} ${{ matrix.variant }} ${{ matrix.modules }})
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/python-linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Python Linting

on:
push:
pull_request:

jobs:
build:
name: Python Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Python Deps
run: python3 -m pip install ruff

- name: Lint Frozen Modules
shell: bash
run: |
python3 -m ruff check --output-format=full --ignore E501 modules/py_frozen
- name: Lint Examples
shell: bash
run: |
python3 -m ruff check --output-format=full --ignore E501 modules/py_littlefs

0 comments on commit f503cc4

Please sign in to comment.