Skip to content

Added NuGet badge to README #3

Added NuGet badge to README

Added NuGet badge to README #3

name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
BuildAndTest:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal