Skip to content

Update NuGet Packages to v6 (major) #71

Update NuGet Packages to v6 (major)

Update NuGet Packages to v6 (major) #71

Workflow file for this run

name: "Build Library"
on:
push:
branches:
- main
pull_request:
merge_group:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true
jobs:
build:
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
dotnet: [7.0.203]
runs-on: ${{ matrix.os }}
name: Build library
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore dependencies
run: dotnet restore
- name: Build library
run: dotnet build -c Release -v normal --no-restore
- name: Test library
run: dotnet test -v normal -c Release --no-restore --no-build