Skip to content

Commit c422030

Browse files
authored
Tweak CI test job settings (openai#1962)
1 parent 9db9c01 commit c422030

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,16 @@ jobs:
4141

4242
tests:
4343
runs-on: ubuntu-latest
44+
strategy:
45+
fail-fast: false
46+
matrix:
47+
python-version:
48+
- "3.10"
49+
- "3.11"
50+
- "3.12"
51+
- "3.13"
52+
# TODO: enable this https://github.com/openai/openai-agents-python/pull/1961/
53+
# - "3.14"
4454
env:
4555
OPENAI_API_KEY: fake-for-tests
4656
steps:
@@ -50,6 +60,7 @@ jobs:
5060
uses: astral-sh/setup-uv@v5
5161
with:
5262
enable-cache: true
63+
python-version: ${{ matrix.python-version }}
5364
- name: Install dependencies
5465
run: make sync
5566
- name: Run tests with coverage
@@ -71,7 +82,7 @@ jobs:
7182
- name: Build docs
7283
run: make build-docs
7384

74-
old_versions:
85+
old_version_tests:
7586
runs-on: ubuntu-latest
7687
env:
7788
OPENAI_API_KEY: fake-for-tests

0 commit comments

Comments
 (0)