CI: update config location #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CSharpier formatting check | |
on: [push, pull_request] | |
jobs: | |
format-check: | |
permissions: {} # Remove all permissions | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
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 . |