From 5f838a4980b72bf5e5e428fe2be048c10ad3e66e Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Tue, 16 Apr 2024 10:18:38 -0400 Subject: [PATCH] ignore external links (#1306) --- .github/workflows/check-links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 3a4e1322ad..96e8b860d4 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -27,5 +27,5 @@ jobs: - name: Check links run: | - pytest --check-links README.md --check-links-ignore "https://stability.ai/blog/stablecode-llm-generative-ai-coding" - pytest --check-links tutorials --check-links-ignore "https://stability.ai/blog/stablecode-llm-generative-ai-coding" \ No newline at end of file + pytest --check-links README.md --check-links-ignore "http*" + pytest --check-links tutorials --check-links-ignore "http*" \ No newline at end of file