Skip to content

Bump coverlet.collector from 6.0.2 to 6.0.3 #951

Bump coverlet.collector from 6.0.2 to 6.0.3

Bump coverlet.collector from 6.0.2 to 6.0.3 #951

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [[self-hosted, linux], [self-hosted, windows], macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: "Setup Dotnet for use with actions"
uses: actions/setup-dotnet@v4
# don't run on self-hosted Windows
if: ${{ !contains(toJSON(matrix.os), 'windows') || !contains(toJSON(matrix.os), 'self-hosted') }}
with:
global-json-file: 'global.json'
- name: "Build project"
run: |
dotnet tool restore
dotnet build commonItems/commonItems.csproj /m /p:Configuration=Debug