Skip to content

Commit eb52f20

Browse files
committed
Get uv working hopefully
1 parent f5c8e7a commit eb52f20

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/test-github-models.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
permissions:
1919
contents: read
20-
strategy:
21-
matrix:
22-
python_file:
23-
- "chat.py"
24-
- "spanish/chat.py"
2520

2621
steps:
2722
- uses: actions/checkout@v5
@@ -38,10 +33,14 @@ jobs:
3833
run: |
3934
uv pip install -r requirements.txt
4035
41-
- name: Test ${{ matrix.python_file }} with GitHub Models
36+
- name: Test chat files with GitHub Models
4237
env:
4338
API_HOST: github
4439
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4540
GITHUB_MODEL: openai/gpt-4o-mini
4641
run: |
47-
python ${{ matrix.python_file }}
42+
files=("chat.py" "spanish/chat.py")
43+
for file in "${files[@]}"; do
44+
echo "Testing $file..."
45+
python "$file" || exit 1
46+
done

0 commit comments

Comments
 (0)