Skip to content

GitHub Actions - test, format, do-not-merge #2

GitHub Actions - test, format, do-not-merge

GitHub Actions - test, format, do-not-merge #2

Workflow file for this run

name: Run dotnet format
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