From 34181b03d9863324bbaa1f9ef8586d8ffdc2cb70 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 13 Feb 2026 21:58:36 +0100 Subject: [PATCH] install pip --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c10f9432..8bb542cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,18 +30,19 @@ jobs: - name: Fix checkout and upload-artifact run: | apk add nodejs npm - mkdir -p /__e/node24_alpine/bin ln -sf $(which node) /__e/node24_alpine/bin/node ln -sf $(which npm) /__e/node24_alpine/bin/npm ln -sf $(which npx) /__e/node24_alpine/bin/npx - mkdir -p /__e/node20_alpine/bin ln -sf $(which node) /__e/node20_alpine/bin/node ln -sf $(which npm) /__e/node20_alpine/bin/npm ln -sf $(which npx) /__e/node20_alpine/bin/npx - uses: actions/checkout@v4 - uses: actions/setup-python@v5 + - name: Install Python pip + run: | + apk add py3-pip - name: Install Test dependencies run: pip install tox - name: Test with newest Python on latest Ubuntu (32-bit)