Skip to content

feat: Add CI and NuGet publishing workflows with version detection #1

feat: Add CI and NuGet publishing workflows with version detection

feat: Add CI and NuGet publishing workflows with version detection #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build