Skip to content

docs: add links section with docs/NuGet/website URLs, fix GitHub org … #2

docs: add links section with docs/NuGet/website URLs, fix GitHub org …

docs: add links section with docs/NuGet/website URLs, fix GitHub org … #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['7.0.x', '8.0.x', '9.0.x']
steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal