Skip to content

updated unittest for dep_async #5

updated unittest for dep_async

updated unittest for dep_async #5

Workflow file for this run

name: Windows
on: [push, pull_request]
jobs:
msvc2019:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Release -D CMAKE_BUILD_BENCHMARKS=ON -D CMAKE_BUILD_PROFILER=ON
- name: build
run: cmake --build build --parallel 10
- name: test
run: cd build ; ctest --exclude-regex "test-unicode" --output-on-failure