Skip to content

Merge pull request #56 from mark-s/FixProgressReport #132

Merge pull request #56 from mark-s/FixProgressReport

Merge pull request #56 from mark-s/FixProgressReport #132

name: BuildAndTest-Windows
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
BuildAndTest:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
working-directory: src
run: dotnet build
- name: Execute unit tests
working-directory: src
run: dotnet test