Skip to content

build: Bump coverlet.collector from 6.0.2 to 6.0.3 #337

build: Bump coverlet.collector from 6.0.2 to 6.0.3

build: Bump coverlet.collector from 6.0.2 to 6.0.3 #337

Workflow file for this run

name: Code Style Check
on:
workflow_dispatch:
pull_request:
jobs:
check-code-style:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Check dotnet version
run: |
dotnet --version
dotnet --list-runtimes
dotnet --list-sdks
continue-on-error: false
- name: Check code format (editorconfig)
run: dotnet format --verify-no-changes
continue-on-error: false