Skip to content

Commit

Permalink
Merge pull request #296 from PHPCSStandards/feature/ghactions-fix-xml…
Browse files Browse the repository at this point in the history
…lint

GH Actions/CS: fix build failure
  • Loading branch information
jrfnl committed Mar 19, 2022
2 parents a6fb661 + 1fd2add commit b880f5d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/basics.yml
Expand Up @@ -54,7 +54,9 @@ jobs:
uses: "ramsey/composer-install@v2"

- name: Install 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 XML violations inline in the file diff.
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
Expand Down

0 comments on commit b880f5d

Please sign in to comment.