Skip to content

Merge pull request #47 from StuFrankish/dependabot/nuget/coverlet.col… #113

Merge pull request #47 from StuFrankish/dependabot/nuget/coverlet.col…

Merge pull request #47 from StuFrankish/dependabot/nuget/coverlet.col… #113

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET Build
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Build
run: dotnet build
- name: Test
run: dotnet test --no-build --verbosity normal