ci(test): add caching to apt-get install step

This commit is contained in:
Type-Delta
2026-04-06 11:04:19 +07:00
parent 9cc322d109
commit 3e207fc05a

View File

@@ -22,10 +22,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dbus-python build dependencies
run: |
sudo apt-get update
sudo apt-get -y install libdbus-1-dev libglib2.0-dev
- name: Install dbus-python build dependencies with caching
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libdbus-1-dev libglib2.0-dev
version: 1.0
- name: Install uv
uses: astral-sh/setup-uv@v3