doompanning/external/nng/.github/workflows/windows.yml
2023-02-03 21:18:59 +01:00

22 lines
364 B
YAML

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