Skip to content

add NuGet package management configuration for Dependabot #5

add NuGet package management configuration for Dependabot

add NuGet package management configuration for Dependabot #5

Workflow file for this run

name: .NET
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release