Update README.md #68
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: MSBuild | |
on: [push, pull_request] | |
jobs: | |
msbuild: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
configuration: [Release, ReleaseAVX2] | |
steps: | |
- uses: actions/[email protected] | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Restore NuGet packages | |
working-directory: ${{ github.workspace }} | |
run: nuget restore | |
- name: Build | |
working-directory: ${{ github.workspace }} | |
run: msbuild Fusion.sln /p:Platform=x64 /p:Configuration=${{ matrix.configuration }} | |
- uses: actions/[email protected] | |
with: | |
name: Fusion${{ matrix.configuration }} | |
path: output/${{ matrix.configuration }}/*.dll |