Switch build workflow to windows-latest. #16
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: Sphinx Build | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v1 | |
| - name: Setup NuGet | |
| uses: NuGet/setup-nuget@v1.0.5 | |
| - name: setup-msbuild | |
| uses: microsoft/setup-msbuild@v1.1 | |
| - name: Restore Packages | |
| run: nuget restore src/Sphinx.sln | |
| - name: Build solution | |
| run: msbuild src/Sphinx.sln -t:rebuild -property:Configuration=Release |