Skip to content

Update nbgv

Update nbgv #8

name: Smoke-Build
on:
push:
branches:
- test-pipeline-build
# pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest] #, ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet tool install --global nbgv
- name: Restore NuGet packages
run: dotnet restore
- name: Build solution
run: dotnet build --configuration Release