Bug fixes #11
Workflow file for this run
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: [windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup MsBuild | |
uses: microsoft/[email protected] | |
- name: Setup VSTest.console.exe | |
# You may pin to the exact commit or the version. | |
# uses: darenm/Setup-VSTest@d9a5dffa3f11d9c27ec42eb69515d3aaeaad9ef8 | |
uses: darenm/[email protected] | |
- name: Setup NuGet.exe | |
# You may pin to the exact commit or the version. | |
# uses: NuGet/setup-nuget@296fd3ccf8528660c91106efefe2364482f86d6f | |
uses: NuGet/[email protected] | |
- name: Restore dependencies | |
run: nuget restore CodeDocumentor.sln | |
- name: Build | |
run: msbuild CodeDocumentor.sln /p:platform="Any CPU" /p:configuration="Debug" | |
- name: Test | |
run: vstest.console.exe CodeDocumentor.Test\bin\Debug\net48\CodeDocumentor.Test.dll |