Skip to content

Commit 4b30b75

Browse files
authored
test: Reduce parallel jobs on CI pipeline runs (#113)
1 parent 00e529a commit 4b30b75

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
15+
# Limit parallel runs on pushes to master to 1 to limit integration test rate limited failures
16+
max-parallel: ${{ github.event_name == 'pull_request' && 5 || 1 }}
1517
steps:
1618
- uses: actions/checkout@v4
1719
- name: Install poetry

0 commit comments

Comments
 (0)