Commit
·
cb39e46
1
Parent(s):
5345e1f
Updated Windows test implementation
Browse files
.github/workflows/multi-os-test.yml
CHANGED
@@ -52,7 +52,9 @@ jobs:
|
|
52 |
if: matrix.os == 'windows-latest'
|
53 |
run: |
|
54 |
# Create tools directory
|
55 |
-
|
|
|
|
|
56 |
|
57 |
# Download and install Tesseract
|
58 |
$tesseractUrl = "https://github.com/UB-Mannheim/tesseract/releases/download/v5.3.3.20231005/tesseract-ocr-w64-setup-5.3.3.20231005.exe"
|
|
|
52 |
if: matrix.os == 'windows-latest'
|
53 |
run: |
|
54 |
# Create tools directory
|
55 |
+
if (!(Test-Path "C:\tools")) {
|
56 |
+
mkdir C:\tools
|
57 |
+
}
|
58 |
|
59 |
# Download and install Tesseract
|
60 |
$tesseractUrl = "https://github.com/UB-Mannheim/tesseract/releases/download/v5.3.3.20231005/tesseract-ocr-w64-setup-5.3.3.20231005.exe"
|