Skip to content

Merge pull request #677 from microting/dependabot/nuget/Microsoft.Asp… #1103

Merge pull request #677 from microting/dependabot/nuget/Microsoft.Asp…

Merge pull request #677 from microting/dependabot/nuget/Microsoft.Asp… #1103

name: .NET Core
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '.github/**'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- '.github/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.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