Skip to content

Bump the minor-version-updates group with 2 updates #153

Bump the minor-version-updates group with 2 updates

Bump the minor-version-updates group with 2 updates #153

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: BuildAndRunTests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build the application
run: dotnet build --no-restore --configuration ${{ matrix.configuration }}
- name: Execute unit tests
run: dotnet test --verbosity normal