Skip to content

Docs: Add NuGet version badge to README #13

Docs: Add NuGet version badge to README

Docs: Add NuGet version badge to README #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore src/Endpointer.slnx
- name: Build
run: dotnet build src/Endpointer.slnx --no-restore
- name: Test
run: dotnet test --solution src/Endpointer.slnx --no-build
- name: Pack
run: dotnet pack src/Endpointer/Endpointer.csproj --no-build -o ./artifacts