Add a new nni_list_node named a_finish_node in struct nng_aio #1403
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 | |