fixing issue when formatting with tabs that would convert tabs in com… #367
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: Format Repositories | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "Src/CSharpier/**/*" | |
jobs: | |
format_repositories: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: csharpier | |
- uses: actions/setup-dotnet@v3 | |
- uses: actions/checkout@v2 | |
with: | |
repository: belav/csharpier-repos | |
path: csharpier-repos | |
- run: dotnet build csharpier/Src/CSharpier.Cli/CSharpier.Cli.csproj -c release | |
- run: dotnet csharpier/Src/CSharpier.Cli/bin/release/net8.0/dotnet-csharpier.dll csharpier-repos --skip-write |