Skip to content

Commit c879f77

Browse files
Trigger CI test
1 parent 98ec2bc commit c879f77

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
# - '3.12.x'
2121
- '3.13.x'
2222
os:
23-
- ubuntu-latest
23+
# - ubuntu-latest
2424
# - macos-latest
25-
# - windows-latest
25+
- windows-latest
2626

2727
runs-on: ${{ matrix.os }}
2828

@@ -44,7 +44,7 @@ jobs:
4444
- name: Set Model Cache Directory
4545
run: |
4646
if [[ "$RUNNER_OS" == "Windows" ]]; then
47-
echo "MODEL_CACHE_DIR=~\AppData\Local\Temp\fastembed_cache" >> $GITHUB_ENV
47+
echo "MODEL_CACHE_DIR=%TEMP%\\fastembed_cache" >> $GITHUB_ENV
4848
else
4949
echo "MODEL_CACHE_DIR=/tmp/fastembed_cache" >> $GITHUB_ENV
5050
fi
@@ -69,5 +69,5 @@ jobs:
6969

7070
- name: List Cached Models (Windows) - %TEMP%
7171
if: runner.os == 'Windows'
72-
run: ls -lah ~\AppData\Local\Temp\fastembed_cache
72+
run: ls -la "$TEMP\\fastembed_cache"
7373
shell: bash

0 commit comments

Comments
 (0)