Skip to content

Commit 4672b3b

Browse files
konardclaude
andcommitted
Fix CI workflow to test only Python 3.13 and Node.js 22
- Removed older Python versions (3.8-3.12) from matrix - Removed older Node.js versions (18, 20) from matrix - Removed issue-* from push trigger to avoid duplicate runs - Only tests on push to main and pull_request to main 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 07e7f06 commit 4672b3b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main, issue-* ]
5+
branches: [ main ]
66
pull_request:
77
branches: [ main ]
88

@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.13']
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -48,12 +48,12 @@ jobs:
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
51-
node-version: ['18', '20', '22']
51+
node-version: ['22']
5252

5353
steps:
5454
- uses: actions/checkout@v4
5555

56-
- name: Set up Node.js ${{ matrix.node-version }}
56+
- name: Set up Node.js ${{ matrix.python-version }}
5757
uses: actions/setup-node@v4
5858
with:
5959
node-version: ${{ matrix.node-version }}

0 commit comments

Comments
 (0)