Skip to content

Update CD workflow to include creating, validating, testing, and deploying NuGet package #8

Update CD workflow to include creating, validating, testing, and deploying NuGet package

Update CD workflow to include creating, validating, testing, and deploying NuGet package #8

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build solution
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal