Skip to content

Add the png to the package ensuring the readme renders correctly #86

Add the png to the package ensuring the readme renders correctly

Add the png to the package ensuring the readme renders correctly #86

Workflow file for this run

name: .NET
env:
Configuration: Release
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore and Build
run: dotnet build
- name: Pack
run: dotnet pack --no-build
- name: Test
run: dotnet test --no-build --verbosity normal