Skip to content

Commit

Permalink
Merge pull request #39 from PHPCompatibility/feature/ghactions-fix-xm…
Browse files Browse the repository at this point in the history
…llint

GH Actions/CS: fix build failure
  • Loading branch information
jrfnl authored Mar 19, 2022
2 parents 43c4c2c + 42c5e3d commit 79966df
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 79966df

Please sign in to comment.