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 98ec2bc commit c879f77Copy full SHA for c879f77
.github/workflows/python-tests.yml
@@ -20,9 +20,9 @@ jobs:
20
# - '3.12.x'
21
- '3.13.x'
22
os:
23
- - ubuntu-latest
+ # - ubuntu-latest
24
# - macos-latest
25
- # - windows-latest
+ - windows-latest
26
27
runs-on: ${{ matrix.os }}
28
@@ -44,7 +44,7 @@ jobs:
44
- name: Set Model Cache Directory
45
run: |
46
if [[ "$RUNNER_OS" == "Windows" ]]; then
47
- echo "MODEL_CACHE_DIR=~\AppData\Local\Temp\fastembed_cache" >> $GITHUB_ENV
+ echo "MODEL_CACHE_DIR=%TEMP%\\fastembed_cache" >> $GITHUB_ENV
48
else
49
echo "MODEL_CACHE_DIR=/tmp/fastembed_cache" >> $GITHUB_ENV
50
fi
@@ -69,5 +69,5 @@ jobs:
69
70
- name: List Cached Models (Windows) - %TEMP%
71
if: runner.os == 'Windows'
72
- run: ls -lah ~\AppData\Local\Temp\fastembed_cache
+ run: ls -la "$TEMP\\fastembed_cache"
73
shell: bash
0 commit comments