-
Notifications
You must be signed in to change notification settings - Fork 1.2k
43 lines (34 loc) · 979 Bytes
/
complete_check.yml
File metadata and controls
43 lines (34 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Run check scripts
on:
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
# submodules: 'recursive'
fetch-depth: 1
- 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: |
# disable as imported as a submodule
# ./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
# disable as imported as a submodule
# ./standard/itu/check.sh