add api docs #173
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 Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Debug, Release, MinSizeRel, RelWithDebInfo] | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: Generate Project | |
run: ./build_windows.bat | |
- name: Restore Project | |
run: msbuild ./proj/picasso.sln /t:Restore /p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} | |
- name: Build Solution | |
run: msbuild ./proj/picasso.sln /p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} | |