Add author and description methods to IPluginList (#161) #168
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: Build UIBase | |
on: | |
push: | |
branches: master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Build UI Base | |
id: build-uibase | |
uses: ModOrganizer2/build-with-mob-action@master | |
with: | |
mo2-third-parties: gtest spdlog boost | |
mo2-dependencies: cmake_common | |
mo2-cmake-command: -DUIBASE_TESTS=1 .. | |
- name: Build UI Base Tests | |
run: cmake --build vsbuild --config RelWithDebInfo -j4 --target uibase-tests | |
working-directory: ${{ steps.build-uibase.outputs.working-directory }} | |
- name: Test UI Base | |
run: ctest --test-dir vsbuild -C RelWithDebInfo --output-on-failure | |
working-directory: ${{ steps.build-uibase.outputs.working-directory }} |