Fix ZBias with d3d9 in Hospital 3F room #468
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| UseMultiToolTask: true | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: [Workflow] | |
| platform: [Win32] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: microsoft/setup-msbuild@v1 | |
| - uses: Trass3r/setup-cpp@master | |
| - name: Build | |
| run: msbuild /m /p:Configuration=${{ matrix.config }} /p:Platform=${{ matrix.platform }} sh2-enhce.sln | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.config }} binaries | |
| path: | | |
| bin/${{ matrix.config }}/* |