Skip to content

Merge pull request #20 from Ian-Webster/19-add-extension-for-hotchoco… #14

Merge pull request #20 from Ian-Webster/19-add-extension-for-hotchoco…

Merge pull request #20 from Ian-Webster/19-add-extension-for-hotchoco… #14

Workflow file for this run

name: Branch actions
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
# Build project
- name: Build
run: dotnet build --configuration Release
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test