mirror of
https://github.com/zeldaret/Z64Utils.git
synced 2026-09-26 13:33:11 -04:00
23 lines
471 B
YAML
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 .
|