Skip to content

Bump coverlet.collector from 6.0.0 to 6.0.1 #220

Bump coverlet.collector from 6.0.0 to 6.0.1

Bump coverlet.collector from 6.0.0 to 6.0.1 #220

Workflow file for this run

name: .NET
on:
push:
branches:
- main
paths:
- src/**
- .github/workflows/dotnet.yml
pull_request:
branches:
- main
paths:
- src/**
- .github/workflows/dotnet.yml
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build Solution
run: dotnet build --no-restore -c:Release
- name: Test Solution
run: dotnet test --no-build --verbosity normal -c:Release