Custom variable adapter registration, std::optional example #81
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] | |
jobs: | |
build-and-test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Build Directory | |
run: cmake -E make_directory build | |
- name: Configure | |
run: cmake -S . -B build -DAE_LEAN_AND_MEAN=OFF | |
- name: Build | |
run: cmake --build build --config Release | |
- name: Test | |
run: build\test\Release\test.exe |