Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Bump coverlet.collector from 3.1.2 to 6.0.4 #54

Bump coverlet.collector from 3.1.2 to 6.0.4

Bump coverlet.collector from 3.1.2 to 6.0.4 #54

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Codecov
uses: codecov/codecov-action@v3.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}