Skip to content

Merge pull request #41 from EraYaN/dependabot/nuget/xunit-2.5.1 #78

Merge pull request #41 from EraYaN/dependabot/nuget/xunit-2.5.1

Merge pull request #41 from EraYaN/dependabot/nuget/xunit-2.5.1 #78

Workflow file for this run

name: Build.NET
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --nologo --no-restore
- name: Test
run: dotnet test --nologo --no-build --verbosity normal --collect:"XPlat Code Coverage" --settings tests/coverletArgs.runsettings