Skip to content

Added XML documentation for Embed.cs, first of many #31

Added XML documentation for Embed.cs, first of many

Added XML documentation for Embed.cs, first of many #31

Workflow file for this run

name: Build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
7.0.x
6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore --warnaserror
- name: Test
run: dotnet test -c Release --no-build --verbosity normal