File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Windows MSVC
2+
3+ on :
4+ push :
5+ branches :
6+ - ' **'
7+ pull_request :
8+ branches :
9+ - ' **'
10+
11+ jobs :
12+ windows-msvc :
13+ runs-on : windows-latest
14+ name : Windows MSVC
15+ steps :
16+ - name : Checkout repository
17+ uses : actions/checkout@v4
18+
19+ - name : Install dependencies
20+ run : choco install ninja cmake --yes
21+
22+ - name : Run CMake configuration and build
23+ run : |
24+ cmake examples -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
25+ cmake --build build --parallel
26+
27+ - name : Run Unit Tests
28+ run : .\build\tests.exe
Original file line number Diff line number Diff line change 33![ Ubuntu 24 GCC] ( https://github.com/pfeatherstone/https/actions/workflows/ubuntu24_gcc.yml/badge.svg )
44![ Ubuntu 24 Clang] ( https://github.com/pfeatherstone/https/actions/workflows/ubuntu24_clang.yml/badge.svg )
55![ macOS Clang] ( https://github.com/pfeatherstone/https/actions/workflows/macos_clang.yml/badge.svg )
6+ ![ Windows MSVC] ( https://github.com/pfeatherstone/https/actions/workflows/windows_msvc.yml/badge.svg )
67
78# https
89HTTPS and WSS library.
You can’t perform that action at this time.
0 commit comments