Skip to content

Commit 6e6da85

Browse files
feat : Isolate test for non functional code changes (#3396)
Co-authored-by: Wendong-Fan <[email protected]>
1 parent 30a5798 commit 6e6da85

File tree

6 files changed

+37
-1
lines changed

6 files changed

+37
-1
lines changed

.github/workflows/build_package.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Build Package
33
on:
44
push:
55
branches: [ "master", "qa" ]
6+
paths-ignore:
7+
- "docs/**"
8+
- "**/*.md"
9+
- "LICENSE"
610

711
jobs:
812
build:

.github/workflows/codespell.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ name: Codespell
55
on:
66
push:
77
branches: [master]
8+
paths-ignore:
9+
- "docs/**"
10+
- "**/*.md"
11+
- "LICENSE"
812
pull_request:
913
branches: [master]
14+
paths-ignore:
15+
- "docs/**"
16+
- "**/*.md"
17+
- "LICENSE"
1018

1119
permissions:
1220
contents: read

.github/workflows/pre_commit.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,16 @@ name: Pre Commit Check
33
on:
44
push:
55
branches: [ "master", "qa" ]
6+
paths-ignore:
7+
- "docs/**"
8+
- "**/*.md"
9+
- "LICENSE"
610
pull_request:
711
branches: [ "master", "qa" ]
12+
paths-ignore:
13+
- "docs/**"
14+
- "**/*.md"
15+
- "LICENSE"
816

917
jobs:
1018
pre-commit:

.github/workflows/pytest_apps.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,16 @@ name: Pytest Gradio Apps and Examples
66
on:
77
push:
88
branches: [ "master", "qa" ]
9+
paths-ignore:
10+
- "docs/**"
11+
- "**/*.md"
12+
- "LICENSE"
913
pull_request:
1014
branches: [ "master", "qa" ]
15+
paths-ignore:
16+
- "docs/**"
17+
- "**/*.md"
18+
- "LICENSE"
1119

1220
permissions:
1321
contents: read

.github/workflows/pytest_package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,16 @@ name: Pytest Camel package
66
on:
77
push:
88
branches: [ "master", "qa" ]
9+
paths-ignore:
10+
- "docs/**"
11+
- "**/*.md"
12+
- "LICENSE"
913
pull_request:
1014
branches: [ "master", "qa" ]
15+
paths-ignore:
16+
- "docs/**"
17+
- "**/*.md"
18+
- "LICENSE"
1119

1220
permissions:
1321
contents: read

.github/workflows/test_minimal_dependency.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- "camel/**"
88
- "examples/**"
99
- "test/integration_test/**"
10-
- ".github/workflows/test-minimal-install.yml"
10+
- ".github/workflows/test_minimal_dependency.yml"
1111

1212
jobs:
1313
minimal-dependency:

0 commit comments

Comments
 (0)