Files
2026-03-13 16:16:06 +01:00

23 lines
471 B
YAML

name: CSharpier formatting check
on: [workflow_call]
jobs:
format-check:
permissions: {} # Remove all permissions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install CSharpier
shell: bash
run: |
dotnet tool install --global csharpier --version 0.30.6
- name: Check formatting
shell: bash
run: |
dotnet csharpier --check .