-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (37 loc) · 1.16 KB
/
validate-tei.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Validate TEI
on:
push:
branches:
- edition
jobs:
xml-linters:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download schema
run: wget http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng
- name: Lint book_one.xml
uses: ChristophWurst/xmllint-action@master
with:
xml-file: ./texts/01_book_one/book_one.xml
xml-schema-file: ./tei_all.rng
xml-schema-type: relaxng
- name: Lint book_two.xml
uses: ChristophWurst/xmllint-action@master
with:
xml-file: ./texts/02_book_two/book_two.xml
xml-schema-file: ./tei_all.rng
xml-schema-type: relaxng
- name: Lint book_three.xml
uses: ChristophWurst/xmllint-action@master
with:
xml-file: ./texts/03_book_three/book_three.xml
xml-schema-file: ./tei_all.rng
xml-schema-type: relaxng
- name: Lint book_of_remembrances.xml
uses: ChristophWurst/xmllint-action@master
with:
xml-file: ./texts/00_book_of_remembrances/book_of_remembrances.xml
xml-schema-file: ./tei_all.rng
xml-schema-type: relaxng