Skip to content

Commits to finally separate from TFS, bring fixes and essential TMS features #1

Commits to finally separate from TFS, bring fixes and essential TMS features

Commits to finally separate from TFS, bring fixes and essential TMS features #1

Workflow file for this run

name: XML syntax check
on:
pull_request:
paths:
- data/**.xml
push:
branches:
- master
paths:
- data/**.xml
jobs:
xmllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install xmllint
run: sudo apt-get update && sudo apt-get install -y libxml2-utils
- name: Test XML syntax
run: find data/ -name '*.xml' -print0 | xargs -0 -n1 xmllint --noout