Skip to content

chore(Directory.Packages.props): update nuget packatges #102

chore(Directory.Packages.props): update nuget packatges

chore(Directory.Packages.props): update nuget packatges #102

Workflow file for this run

name: Build
on:
push:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
paths-ignore:
- "README.md"
- ".github/workflows/**.yml"
- "docs/**"
- "**/*.md"
- "**/*.yml"
env:
DOTNET_VERSION: "8.0.x"
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --nologo
- name: Test
run: dotnet test --no-build --nologo --no-restore --verbosity minimal