Run installer #175
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
name: WeSay CI workflow | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-2019] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.3.4 | |
with: | |
fetch-depth: 0 | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | |
- name: Setup MSBuild.exe (Windows OS) | |
uses: microsoft/setup-msbuild@v1.0.2 | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So the PATH can be set by this step | |
if: ${{ matrix.os == 'windows-2019' }} | |
# Run the unit tests | |
- name: Restore | |
run: nuget restore src/WeSay.sln | |
- name: Build | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So gitversion can set environment vars during the build | |
run: msbuild src/WeSay.sln | |
- name: Prepare to Test | |
run: msbuild build/WeSay.proj /t:RestoreBuildTasks | |
- name: Test | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So testing files and folders can be created | |
run: msbuild build/WeSay.proj /t:TestOnly /p:Configuration=Debug /p:Platform="x86" /p:CI=true /v:diag | |
- name: Test Report | |
uses: jasonleenaylor/nunit-reporter@63ab85dd5da111c3f4ef95f2fb73bbe667f58db9 | |
if: always() | |
with: | |
path: output/**/TestResults.xml | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
reportTitle: "Test Results (${{ matrix.os }})" | |
numFailures: |