Merge pull request #17 from xtne6f/pr-ucs-latin #45
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: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: | |
- Debug | |
- Release | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- uses: microsoft/setup-msbuild@v1 | |
- name: Build | |
run: | | |
msbuild Projects/LibISDB.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=x64 | |
- name: Run test | |
run: | | |
./Projects/x64/${{ matrix.configuration }}/libisdbtest.exe |