Skip to content

Commit 2b1166c

Browse files
author
Levent KARAGÖL
committed
Github Action .yml files have been updated
1 parent ab97c00 commit 2b1166c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/windows-x86_64.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ jobs:
5555
run: |
5656
cmake --build build --config Release
5757
58+
- name: Check if test executable exists
59+
run: |
60+
if (Test-Path "./build/test/test.exe") {
61+
Write-Host "Test executable exists."
62+
} else {
63+
Write-Host "Test executable does not exist."
64+
exit 1
65+
}
66+
5867
- name: Run tests
5968
run: |
60-
.\build\test\test.exe
69+
& "D:\a\libcpp-http-client\libcpp-http-client\build\test\test.exe"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Modern non-blocking HTTP Client library for C++ (17+)
33

44
[![linux-x86_64](https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-x86_64.yml/badge.svg)](https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-x86_64.yml)
55
[![linux-aarch64](https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-aarch64.yml/badge.svg)](https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-aarch64.yml)
6-
6+
[![windows-x86_64](https://github.com/lk-libs/libcpp-http-client/actions/workflows/windows-x86_64.yml/badge.svg)](https://github.com/lk-libs/libcpp-http-client/actions/workflows/windows-x86_64.yml)

0 commit comments

Comments
 (0)