Skip to content

Fix the command for NuGet Package Manager console #49

Fix the command for NuGet Package Manager console

Fix the command for NuGet Package Manager console #49

Workflow file for this run

name: NetDevPack - MASTER PR
on:
pull_request:
branches: [ master ]
jobs:
pull-request:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Setup .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build