fix: add installation of system dependencies for Linux in GitHub Actions workflow

This commit is contained in:
benexl
2025-12-31 15:18:24 +03:00
parent dd9d9695e7
commit f9ca8bbd79

View File

@@ -50,6 +50,12 @@ jobs:
with:
enable-cache: true
- name: Install system dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libdbus-1-dev
- name: Install dependencies
run: uv sync --all-extras --all-groups