14 lines
317 B
YAML
14 lines
317 B
YAML
name: build
|
|
|
|
runs:
|
|
using: composite
|
|
|
|
steps:
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: sudo apt update && sudo apt -y install libxml2-utils
|
|
|
|
- name: Validate sensitive_pn.xml
|
|
shell: bash
|
|
run: xmllint --noout --schema ./spn/SpnInfo.xsd ./prebuilt/common/etc/sensitive_pn.xml
|