Support message DSPELLCHECK_SETLANG_MSG via NPPM_MSGTOPLUGIN #47
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: build | |
on: | |
pull_request: | |
release: | |
types: [published] | |
push: | |
tags: | |
branches: | |
- master | |
jobs: | |
Test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
generator: | |
- "Visual Studio 17 2022" | |
arch: | |
- x64 | |
- Win32 | |
build_type: | |
- Release | |
- Debug | |
compiler: | |
- msvc | |
package_generator: | |
- ZIP | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Cpp | |
uses: aminya/setup-cpp@v1 | |
with: | |
compiler: ${{ matrix.compiler }} | |
vcvarsall: ${{ contains(matrix.os, 'windows' )}} | |
cmake: true | |
ninja: true | |
- name: Configure CMake | |
run: | | |
cmake -S . -B ./build -G "${{matrix.generator}}" -A "${{matrix.arch}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} | |
- name: Build | |
# Execute the build. You can specify a specific target with "--target <NAME>" | |
run: | | |
cmake --build ./build --config ${{matrix.build_type}} | |
- name: Test | |
run: | | |
ctest --build-and-test . ./build --build-generator "${{matrix.generator}}" | |
- name: CPack | |
if: matrix.build_type == 'Release' | |
working-directory: ./build | |
run: | | |
cpack -C ${{matrix.build_type}} -G ${{matrix.package_generator}} |