Skip to content

Dotnet format

Dotnet format #5

Workflow file for this run

name: Check format
on: [push, pull_request]
jobs:
Everything:
if: (github.event_name == 'pull_request') == github.event.pull_request.head.repo.fork
runs-on: windows-latest
steps:
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.x'
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- run: dotnet workload restore
- name: Check formatting (Fix with "dotnet format --exclude Typography")
run: dotnet format --verify-no-changes --exclude Typography