Don't run Go tests on documentation changes

This commit is contained in:
Chris Smowton
2025-02-26 10:56:59 +00:00
committed by GitHub
parent cc5179a35e
commit cd9a7ec6a8

View File

@@ -3,6 +3,7 @@ on:
push: push:
paths: paths:
- "go/**" - "go/**"
- "!go/documentation/**"
- "shared/**" - "shared/**"
- .github/workflows/go-tests.yml - .github/workflows/go-tests.yml
- .github/actions/** - .github/actions/**
@@ -13,6 +14,7 @@ on:
pull_request: pull_request:
paths: paths:
- "go/**" - "go/**"
- "!go/documentation/**"
- "shared/**" - "shared/**"
- .github/workflows/go-tests.yml - .github/workflows/go-tests.yml
- .github/actions/** - .github/actions/**