File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -56,13 +56,16 @@ jobs:
5656 sudo apt-get update
5757 sudo apt-get install --no-install-recommends -y libxml2-utils
5858
59+ - name : Download the XSD schema
60+ run : curl http://www.w3.org/2001/XMLSchema.xsd --output XMLSchema.xsd
61+
5962 # Show XML violations inline in the file diff.
6063 # @link https://github.com/marketplace/actions/xmllint-problem-matcher
6164 - uses : korelstar/xmllint-problem-matcher@v1
6265
6366 # Validate the XSD and XML files against schema.
6467 - name : Validate Docs XSD against schema
65- run : xmllint --noout --schema http://www.w3.org/2001/ XMLSchema.xsd DocsXsd/phpcsdocs.xsd
68+ run : xmllint --noout --schema XMLSchema.xsd DocsXsd/phpcsdocs.xsd
6669
6770 - name : Validate PHPCSDebug ruleset against schema
6871 run : xmllint --noout --schema vendor/squizlabs/php_codesniffer/phpcs.xsd PHPCSDebug/ruleset.xml
You can’t perform that action at this time.
0 commit comments