vendor/nokia is updated for release sros_24.10.r7 #512
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| 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: | | |
| ./vendor/fujitsu/yang-validate.sh | |
| ./vendor/cisco/check.sh | |
| ./standard/ietf/check.sh | |
| # temporarily disable | |
| # ./standard/bbf/check.sh | |
| ./experimental/ieee/check.sh | |
| ./standard/ieee/check.sh | |
| ./standard/iana/check.sh | |
| ./standard/itu/check.sh |