mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-09 23:56:14 +01:00

[TASK] Download xliff schema during CI instead of keeping it in repository (#95)

Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
Łukasz Uznański 2020-09-04 20:39:06 +02:00 committed by GitHub
parent 78c45b1341
commit c495b03267
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2225 deletions

File diff suppressed because it is too large Load diff

View file

@ -71,10 +71,13 @@ jobs:
uses: actions/checkout@v2
-
name: "Install xmllint"
run: "sudo apt-get install libxml2-utils"
run: "sudo apt-get install libxml2-utils wget"
-
name: "Download xliff schema"
run: "wget https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd"
-
name: "Run lint"
run: "xmllint --schema .github/build/xliff-core-1.2-strict.xsd
run: "xmllint --schema ./xliff-core-1.2-strict.xsd
--noout $(find Resources -name '*.xlf')"
unit-tests:
name: "Unit tests"