Small display fixes for TA #2691
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: Lint | |
on: | |
pull_request: | |
paths: | |
- "**.cs" | |
- ".config/dotnet-tools.json" | |
push: | |
branches: | |
- main | |
paths: | |
- "**.cs" | |
- ".config/dotnet-tools.json" | |
env: | |
HUSKY: 0 | |
jobs: | |
csharpier: | |
name: CSharpier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install tool dependencies | |
run: dotnet tool restore | |
- name: CSharpier check | |
run: | | |
dotnet csharpier --version | |
dotnet csharpier . --check |