Skip to content

📝 update documentation (#274) #893

📝 update documentation (#274)

📝 update documentation (#274) #893

Workflow file for this run

name: Linter
on:
push:
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Install dotnet-format tool
run: dotnet tool install -g dotnet-format
- name: Run dotnet format
run: dotnet format --verify-no-changes