(maint) Set explicit PlatformTarget for console #63
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: Chocolatey Community Validation Builds | |
on: | |
# Trigger on pushes and pull requests | |
push: | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Build on Windows | |
windows-build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# We make use of .NET in the recipe cake script. | |
# And since .NET 9 no longer have a target framework | |
# for .NET 4.8 x86, we need to restrict it to .NET 8. | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8' | |
- name: Cache Tools | |
uses: actions/cache@v3.0.11 | |
with: | |
path: tools | |
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} | |
- name: Build with .NET Framework | |
run: ./build.ps1 --verbosity=diagnostic --target=CI --testExecutionType=unit --shouldRunOpenCover=false | |
- name: Upload Windows build results | |
uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: windows-build-results | |
path: | | |
code_drop\TestResults\issues-report.html | |
code_drop\TestResults\NUnit\TestResult.xml | |
code_drop\TestCoverage\lcov.info | |
code_drop\TestCoverage\OpenCover.xml | |
code_drop\MsBuild.log | |
# TODO: Add step to upload codecov results? |