Skip to content

Merge pull request #19 from James-LG/james/ci #34

Merge pull request #19 from James-LG/james/ci

Merge pull request #19 from James-LG/james/ci #34

name: .NET Desktop
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
strategy:
matrix:
configuration: [Release]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
# Restore the application
- name: Restore the application
run: dotnet restore
# Build the application
- name: Build the application
run: dotnet build -c $env:Configuration
env:
Configuration: ${{ matrix.configuration }}
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test -c $env:Configuration --no-build
env:
Configuration: ${{ matrix.configuration }}