Skip to content

Run dotnet format on build #13

Run dotnet format on build

Run dotnet format on build #13

Workflow file for this run

name: Code formatting
on:
pull_request:
jobs:
dotnet-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Check formatting
run: dotnet format --verify-no-changes --verbosity diagnostic