fix text and tspan redraw missing path bug. #421
This file contains hidden or 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/setup-msbuild@v1.0.2 | |
| - 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 }} | |