Skip to content

Code coverage

Code coverage #68

Workflow file for this run

name: Windows
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
windows-msvc:
runs-on: windows-latest
name: Windows MSVC
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: choco install --no-progress --yes cmake openssl
- name: Run CMake configuration and build
run: |
cmake examples -B build -DOPENSSL_ROOT_DIR="C:\Program Files\OpenSSL\" -DOPENSSL_USE_STATIC_LIBS=TRUE
cmake --build build --config RelWithDebInfo --parallel
- name: Run Unit Tests
run: build\RelWithDebInfo\tests.exe