Skip to content

Update Nuget Packages #109

Update Nuget Packages

Update Nuget Packages #109

Workflow file for this run

name: .NET Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
dotnet-test:
# ↓ Change this to "false" to disable the workflow without any alert messages.
if: ${{ true }}
# ↑ Change to "true" (or delete) to enable the workflow.
name: Run unit tests
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal