From 8639f8c1a64c3aa60dc49fdf73cc73ed98e24ae3 Mon Sep 17 00:00:00 2001 From: David Peter Date: Thu, 28 Nov 2024 10:04:20 +0100 Subject: [PATCH] CI: Treat mdtest Markdown files as code (#14653) ## Summary Make sure we run the tests for mdtest-only changes. ## Test Plan Tested if positive glob patterns override negative patterns here: https://codepen.io/mrmlnc/pen/OXQjMe --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 05dfe6fca7..a04771cefb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -82,6 +82,7 @@ jobs: code: - "**/*" - "!**/*.md" + - "crates/red_knot_python_semantic/resources/mdtest/**/*.md" - "!docs/**" - "!assets/**"