├── .flake8 ├── .github └── workflows │ ├── pr_checks.yaml │ └── releases.yaml ├── .gitignore ├── .gitmessage ├── COPYING ├── Makefile ├── README.md ├── bundled.txt └── check_copyright.sh /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/pr_checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/.github/workflows/pr_checks.yaml -------------------------------------------------------------------------------- /.github/workflows/releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/.github/workflows/releases.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | *.tar 3 | gen/* 4 | *.DS_Store -------------------------------------------------------------------------------- /.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/.gitmessage -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/README.md -------------------------------------------------------------------------------- /bundled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check_copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristanetworks/cloudvision-python-actions/HEAD/check_copyright.sh --------------------------------------------------------------------------------