Skip to content

Use platform independent HttpClient #301

Use platform independent HttpClient

Use platform independent HttpClient #301

# For all pushes and pull_request, this workflow creates a debug build
name: Test Build
on: [ push, pull_request ]
jobs:
build:
runs-on: windows-2019
strategy:
matrix:
flavor: [Installer, Portable]
steps:
- uses: actions/checkout@v2
- uses: ./.github/build
with:
configuration: Debug
flavor: ${{ matrix.flavor }}
artifact: PasteIntoFile_debug
# test:
# runs-on: windows-2019 # For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
#
# steps:
# - name: Checkout
# uses: actions/checkout@v2
#
# ## Install the .NET Core workload
# ## This is not required since the windows-2019 runner comes with pre-installed .NET Framework
# #- name: Install .NET Core
# # uses: actions/setup-dotnet@v1
# # with:
# # dotnet-version: 5.0.x
#
# # Execute all unit tests in the solution
# - name: Execute unit tests
# run: dotnet test