From 241be9c45a5e592554b04d863f6ed9fa113f3e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Gajdu=C5=A1ek?= Date: Sun, 25 Feb 2024 22:48:45 +0100 Subject: [PATCH] ci: install xmllint in GHA --- .github/workflows/pull_request.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a5b2416..14508af 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -12,6 +12,9 @@ jobs: matrix: python-version: ["3.11"] steps: + - name: Install xmllint + run: sudo apt -y install libxml2-utils + - name: Checkout Repository uses: actions/checkout@v4