Skip to content

Commit 990f224

Browse files
committed
Update tests.yml
1 parent 92fc61d commit 990f224

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ jobs:
3232
downloadUrl="${baseUrl}Win64.zip?raw=true"
3333
echo "Download URL (64-bit): $downloadUrl"
3434
outputFile="$RUNNER_TEMP/downloaded64.zip"
35-
curl -o "$outputFile" "$downloadUrl"
36-
echo "Downloaded file: $outputFile"
37-
ls $RUNNER_TEMP
38-
unzip -o "$outputFile" -d ./tests
39-
rm -f "$outputFile"
35+
curl "$downloadUrl"
36+
unzip -o ./Win64.zip -d ./tests
37+
rm -f ./Win64.zip
4038
4139
- name: Download Simba 2.0 (32-bit)
4240
shell: bash
@@ -45,11 +43,9 @@ jobs:
4543
downloadUrl="${baseUrl}Win32.zip?raw=true"
4644
echo "Download URL (32-bit): $downloadUrl"
4745
outputFile="$RUNNER_TEMP/downloaded32.zip"
48-
curl -o "$outputFile" "$downloadUrl"
49-
echo "Downloaded file: $outputFile"
50-
ls $RUNNER_TEMP
51-
unzip -o "$outputFile" -d ./tests
52-
rm -f "$outputFile"
46+
curl "$downloadUrl"
47+
unzip -o ./Win32.zip -d ./tests
48+
rm -f ./Win32.zip
5349
5450
- name: Run tests
5551
run: |

0 commit comments

Comments
 (0)