fixes #1754 nng_aio_stop.3 refers to nng_aio_schedule()
instead of …
#1521
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: windows | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build | |
runs-on: [ windows-latest ] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Configure | |
run: cmake -B build | |
- name: Build | |
run: cmake --build build | |
- name: Test | |
run: | | |
cd build | |
ctest -C Debug --output-on-failure | |