summaryrefslogtreecommitdiff
path: root/.github/workflows/python_matrix.yml
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2026-07-17 12:04:09 -0300
committernessita <124304+nessita@users.noreply.github.com>2026-07-17 15:39:34 -0300
commit659a77cf1d8fd7b35e82e1cd830b32360d189ba4 (patch)
treeae12637aae3776b73a1a00b6600c36bd2e4c92bb /.github/workflows/python_matrix.yml
parentdd4fc22d4cfd182c04e0468ae4a8f630fbb2fd1b (diff)
Unified dependency apt installation in GitHub Action workflows.
Diffstat (limited to '.github/workflows/python_matrix.yml')
-rw-r--r--.github/workflows/python_matrix.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/python_matrix.yml b/.github/workflows/python_matrix.yml
index 4d31af141a..cec3b0be06 100644
--- a/.github/workflows/python_matrix.yml
+++ b/.github/workflows/python_matrix.yml
@@ -49,8 +49,10 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'tests/requirements/py3.txt'
- - name: Install libmemcached-dev for pylibmc
- run: sudo apt-get install libmemcached-dev
+ - name: Install system packages
+ run: |
+ sudo apt update
+ xargs -a .github/workflows/data/apt-packages.txt sudo apt install -y --no-install-recommends
- name: Install and upgrade packaging tools
run: python -m pip install --upgrade pip wheel
- run: python -m pip install -r tests/requirements/py3.txt -e .