From 674180ad0c2d73025f19bf596b390e78db4ab402 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 1 Oct 2024 10:50:39 -0400 Subject: [PATCH] docs: Add linting check as part of docs deploy (#1939) We'll need to add the same thing as part of CI testing, but a second check during deployment wont hurt in case CI is by passed for whatever reason. --- .github/workflows/deploy_docs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 70bf049c7..42fffc7e8 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -41,6 +41,10 @@ jobs: poetry install --with docs poetry run pip install -U pytest pytest-check-links langsmith langchain GitPython + - name: Lint Docs + # This step lints the docs using the existing linting set up. + # It should be very fast and should not require any external services. + run: make lint-docs - name: Build site run: make build-docs env: