├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── compile.yml │ ├── docs.yml │ ├── publish.yml │ └── requirements.txt ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── action.yml ├── compiled ├── .gitignore └── index.js ├── docs ├── .gitignore ├── Makefile ├── conf.py ├── index.rst ├── requirements.txt └── tutorials │ ├── another-tutorial.py │ └── tutorial.py ├── package.json ├── pyproject.toml ├── readthedocs.yml ├── setup.py └── src ├── js └── index.js └── rtds_action ├── __init__.py └── rtds_action.py /.gitattributes: -------------------------------------------------------------------------------- 1 | compiled/* linguist-generated 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/.github/workflows/requirements.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.ipynb 2 | node_modules 3 | rtds_action_version.py 4 | build 5 | dist 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/action.yml -------------------------------------------------------------------------------- /compiled/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !index.js 4 | -------------------------------------------------------------------------------- /compiled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/compiled/index.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials/another-tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/docs/tutorials/another-tutorial.py -------------------------------------------------------------------------------- /docs/tutorials/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/docs/tutorials/tutorial.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/setup.py -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/rtds_action/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/src/rtds_action/__init__.py -------------------------------------------------------------------------------- /src/rtds_action/rtds_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfm/rtds-action/HEAD/src/rtds_action/rtds_action.py --------------------------------------------------------------------------------