Skip to content

Commit

Permalink
GH Actions/CS: fix build failure
Browse files Browse the repository at this point in the history
Fix failing installation of the xmllint tooling.
  • Loading branch information
jrfnl committed Mar 19, 2022
1 parent 43c4c2c commit 42c5e3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
run: composer install --no-dev --no-interaction --no-progress

- name: Setup xmllint
run: sudo apt-get install --no-install-recommends -y libxml2-utils
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y libxml2-utils
# Show violations inline in the file diff.
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
Expand Down

0 comments on commit 42c5e3d

Please sign in to comment.