From 03c95a5f58779d84f77eeab7838bb22b2352ab63 Mon Sep 17 00:00:00 2001 From: encodeous Date: Thu, 30 Apr 2026 10:35:15 -0400 Subject: [PATCH] ci: ignore doc changes --- .github/workflows/go-test.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 26614ae..2277161 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -2,12 +2,18 @@ name: Go Test on: push: - branches: [ main ] + branches: [main] + paths-ignore: + - "docs/**" + - "README.md" pull_request: - branches: [ main ] + branches: [main] + paths-ignore: + - "docs/**" + - "README.md" env: - GO_VERSION: '1.25.4' + GO_VERSION: "1.26.2" jobs: unit_test: