Skip to content

Update Nugets

Update Nugets #74

Workflow file for this run

name: Build & Test PR
on:
pull_request:
branches: [ master ]
env:
NETCORE_VERSION: '8.0.x'
jobs:
build:
name: Build and test
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- name: Setting up .NET Core SDK ${{ env.NETCORE_VERSION }}...
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.NETCORE_VERSION }}
- name: Restore Workloads
run: dotnet workload restore
- name: Restoring Packages
run: dotnet restore
- name: Building Solution
run: dotnet build TabBlazor.sln --configuration Release --no-restore
- name: Testing
run: dotnet test --no-build --configuration Release --no-restore --verbosity normal