File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 27
27
- name : Set up Python ${{ matrix.python-version }}
28
28
uses : actions/setup-python@v4
29
29
with :
30
- python-version : ${{ matrix.python-version }}
31
- cache : ' pip' # Note that pip is for the tox level. Poetry is still used for installing the specific environments (tox.ini)
30
+ python-version : ${{ matrix.python-version == '3.12' && '3.12.3' || matrix.python-version }} # Using 3.12.3 to resolve Pydantic ForwardRef issue
31
+ cache : ' pip' # Note that pip is for the tox level. Poetry is still used for installing the specific environments (tox.ini)
32
32
33
33
- name : Check Python Version
34
34
run : python --version
43
43
OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
44
44
run : tox
45
45
46
+ # Temporarily disabling codecov until we resolve codecov rate limiting issue
46
47
# - name: Report coverage
47
48
# run: |
48
49
# bash <(curl -s https://codecov.io/bash)
You can’t perform that action at this time.
0 commit comments