Skip to content

Ensure command type is text, avoids swapping to StoredProc command type #89

Ensure command type is text, avoids swapping to StoredProc command type

Ensure command type is text, avoids swapping to StoredProc command type #89

Workflow file for this run

name: dotnet format
on:
push:
branches: [ master ]
paths:
- '**.cs'
- 'src/.editorconfig'
pull_request:
branches: [ master ]
paths:
- '**.cs'
- 'src/.editorconfig'
jobs:
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: dotnet format
run: dotnet format --verify-no-changes
working-directory: src