Update Nugets #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |