Update readme to remove confusing outdated "AixLog::Type" from the docs #22
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-win64 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: cmake build | |
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
- name: cmake make | |
run: cmake --build build --parallel 3 | |
- name: test | |
run: build\Debug\aixlog_example.exe |