We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9db9c01 commit c422030Copy full SHA for c422030
.github/workflows/tests.yml
@@ -41,6 +41,16 @@ jobs:
41
42
tests:
43
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"
54
env:
55
OPENAI_API_KEY: fake-for-tests
56
steps:
@@ -50,6 +60,7 @@ jobs:
60
uses: astral-sh/setup-uv@v5
61
with:
62
enable-cache: true
63
+ python-version: ${{ matrix.python-version }}
64
- name: Install dependencies
65
run: make sync
66
- name: Run tests with coverage
@@ -71,7 +82,7 @@ jobs:
71
82
- name: Build docs
72
83
run: make build-docs
73
84
74
- old_versions:
85
+ old_version_tests:
75
86
76
87
77
88
0 commit comments