ci: install Python3 via apt before pip — runner is node:20-bullseye

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-14 00:04:42 -04:00
co-authored by Claude Sonnet 4.6
parent 3aff52f972
commit 5c3db5e934
+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