ci: install Python3 via apt before pip — runner is node:20-bullseye
Lint / Python (flake8) (push) Successful in 21s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-14 00:04:42 -04:00
parent 3dfcd5903a
commit 28fb5c666c
+6 -3
View File
@@ -13,8 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install flake8
run: pip install flake8
- name: Install Python and flake8
run: |
apt-get update -qq
apt-get install -y -qq python3 python3-pip
pip3 install flake8
- name: Run flake8
run: flake8 .
run: flake8 . --exclude=__pycache__,.git