Use Party shared_ptr instead of raw pointers #1261
Workflow file for this run
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: 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@v4 | |
- name: Install xmllint | |
run: sudo apt update -q && sudo apt install -yq libxml2-utils | |
- name: Test XML syntax | |
run: find data/ -name '*.xml' -print0 | xargs -0 -n1 xmllint --noout |