Split parkings from stop places #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validation | |
on: | |
push: | |
pull_request: | |
# Allow running this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
export: | |
name: Export Pipeline Validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout osm2vdv462 | |
uses: actions/checkout@v3 | |
- name: Run export pipeline with example data | |
run: | | |
for file in ./example_data/*; do | |
echo "Export $file" | |
./export.sh "$file" | |
done | |
- name: Upload exported files as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: example_export | |
path: ./*_export.xml | |
validate: | |
name: NeTEx Schema Validation | |
runs-on: ubuntu-latest | |
needs: export | |
steps: | |
- name: Checkout NeTEx XSD | |
uses: actions/checkout@v3 | |
with: | |
repository: NeTEx-CEN/NeTEx | |
- name: Install xmllint | |
run: sudo apt-get install libxml2-utils | |
- name: Download example export | |
uses: actions/download-artifact@v3 | |
with: | |
name: example_export | |
path: ./example_export/ | |
- name: Validate example export against NeTEx XSD | |
run: | | |
for file in ./example_export/*; do | |
echo "Validate $file" | |
xmllint --noout --schema xsd/NeTEx_publication.xsd "$file" | |
done |