Skip to content

Commit cb59968

Browse files
committed
fix workflows
1 parent 60b87ee commit cb59968

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/_integration_tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: integration-tests
33
on:
44
push:
55
branches: [ main ]
6-
paths:
7-
- "**.py"
6+
paths-ignore:
7+
- "**.md"
88

99
pull_request:
1010
branches: [ main ]
11-
paths:
12-
- "**.py"
11+
paths-ignore:
12+
- "**.md"
1313

1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -24,7 +24,6 @@ jobs:
2424
strategy:
2525
matrix:
2626
python-version:
27-
- "3.9"
2827
- "3.10"
2928
- "3.11"
3029
- "3.12"

.github/workflows/_tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: unit-tests
33
on:
44
push:
55
branches: [ main ]
6-
paths:
7-
- "**.py"
6+
paths-ignore:
7+
- "**.md"
88

99
pull_request:
1010
branches: [ main ]
11-
paths:
12-
- "**.py"
11+
paths-ignore:
12+
- "**.md"
1313

1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -24,7 +24,6 @@ jobs:
2424
strategy:
2525
matrix:
2626
python-version:
27-
- "3.9"
2827
- "3.10"
2928
- "3.11"
3029
- "3.12"

0 commit comments

Comments
 (0)