Merge pull request #1526 from yang-catalog/main #303
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: Run check scripts (SDO only) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyang requests | |
- name: Run check scripts | |
run: | | |
./standard/ietf/check.sh | |
./standard/bbf/check.sh | |
./experimental/ieee/check.sh | |
./standard/ieee/check.sh | |
./standard/iana/check.sh |