Browse Source

GitHub Actions: Use quiet xmllint output to only print error lines

Success lines are no longer printed, making the CI log shorter
and faster to read.
Hugo Locurcio 9 months ago
parent
commit
cec037b1a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/static_checks.yml

+ 1 - 1
.github/workflows/static_checks.yml

@@ -56,7 +56,7 @@ jobs:
 
       - name: Class reference schema checks
         run: |
-          xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml platform/*/doc_classes/*.xml
+          xmllint --quiet --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml platform/*/doc_classes/*.xml
 
       - name: Run C compiler on `gdextension_interface.h`
         run: |