Skip to content

Merge pull request #359 from microsoftgraph/dependabot/nuget/src/Grap… #698

Merge pull request #359 from microsoftgraph/dependabot/nuget/src/Grap…

Merge pull request #359 from microsoftgraph/dependabot/nuget/src/Grap… #698

Workflow file for this run

name: .NET Core
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
working-directory: src/GraphWebhooks
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal