2 Commits
Author SHA1 Message Date
AramJonghu 094fc568f1 chore: added missing dependency to pyproject
C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 16s
Python / verify (pull_request) Failing after 12s
JS/TS / lint (pull_request) Successful in 17s
Python / static (pull_request) Failing after 36s
Rust / fmt (pull_request) Successful in 1m19s
C++ / build (pull_request) Successful in 2m18s
Rust / build (pull_request) Successful in 2m3s
Rust / clippy (pull_request) Successful in 2m1s
C++ / clang-tidy (pull_request) Successful in 3m43s
2026-08-15 21:37:49 +02:00
AramJonghu 29dcac653f ci(python): rework of jobs + fix import issue 2026-08-15 21:37:06 +02:00
+19 -10
View File
@@ -1,15 +1,15 @@
name: Python
env:
APT_DEPS: git python3 python3-pip python3-venv python3-gi python3-cairo python3-dbus python3-pyudev python3-psutil python3-evdev python3-yaml python3-xlib python3-pillow gir1.2-gtk-3.0
APK_DEPS: py3-pillow py3-gi py3-cairo py3-dbus py3-udev py3-psutil py3-evdev py3-yaml py3-xlib py3-typing-extensions gtk+3.0
on:
pull_request:
jobs:
static:
runs-on: debian
container: python:3.13-slim
runs-on: alpine
container: node:26-alpine
steps:
- name: Checkout
@@ -17,8 +17,10 @@ jobs:
- name: Install tools
run: |
apt-get update
apt-get install -y --no-install-recommends git python3 python3-pip python3-venv
apk add --no-cache \
git \
python3 \
py3-pip
python3 -m venv .venv
. .venv/bin/activate
pip install --no-cache-dir ruff
@@ -35,8 +37,8 @@ jobs:
verify:
if: always()
runs-on: debian
container: python:3.13-slim
runs-on: alpine
container: node:26-alpine
steps:
- name: Checkout
@@ -44,8 +46,15 @@ jobs:
- name: Install tools
run: |
apt-get update
apt-get install -y --no-install-recommends $APT_DEPS build-essential python3-dev
apk add --no-cache \
git \
python3 \
py3-pip \
$APK_DEPS \
build-base \
python3-dev \
gcc \
g++
python3 -m venv --system-site-packages .venv
. .venv/bin/activate
pip install --no-cache-dir basedpyright nuitka .
@@ -64,4 +73,4 @@ jobs:
- name: Nuitka module check
run: |
. .venv/bin/activate
nuitka --module --include-package=zshell cli/src/zshell/
nuitka --module --include-package=zshell cli/src/zshell/