Skip to content

Update draft-ietf-nmop-network-incident-yang.md #9

Update draft-ietf-nmop-network-incident-yang.md

Update draft-ietf-nmop-network-incident-yang.md #9

Workflow file for this run

name: "Check Syntax of YANG Modules"
on:
push:
paths:
- '**.yang'
pull_request:
paths:
- '**.yang'
jobs:
build:
name: "Check Syntax of YANG Modules"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: "Install pyang"
run: |
python -m pip install --upgrade pip
pip install pyang
- name: "Lint using pyang"
run: |
make pyang-lint