Skip to content

Updated Intercom.nuspec and README.md #5

Updated Intercom.nuspec and README.md

Updated Intercom.nuspec and README.md #5

Workflow file for this run

name: Tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
pull_request:
branches:
- master
push:
branches:
- master
jobs:
tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal