Spaces:
Configuration error
Configuration error
Commit
·
1755ab9
1
Parent(s):
3ec2cfd
Passed OPENAI_API_KEY into workflow environment from repository secrets
Browse files
.github/workflows/python_ci.yml
CHANGED
@@ -23,6 +23,8 @@ jobs:
|
|
23 |
python -m pip install --upgrade pip
|
24 |
pip install -r requirements.txt
|
25 |
- name: Test with unittest
|
|
|
|
|
26 |
run: |
|
27 |
python -m unittest tests/test_gradio.py
|
28 |
python -m unittest tests/test_linkedin_resume.py
|
|
|
23 |
python -m pip install --upgrade pip
|
24 |
pip install -r requirements.txt
|
25 |
- name: Test with unittest
|
26 |
+
env:
|
27 |
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
28 |
run: |
|
29 |
python -m unittest tests/test_gradio.py
|
30 |
python -m unittest tests/test_linkedin_resume.py
|