build(deps): bump lycheeverse/lychee-action from 2.6.1 to 2.7.0 #2847
Workflow file for this run
This file contains hidden or 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: C# linting | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| csharp-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| - name: .NET restore | |
| run: dotnet tool restore | |
| - name: CSharpier format check | |
| run: | | |
| dotnet csharpier . --check | |
| echo "run 'dotnet build' to fix the formatting of the code automatically" |