Skip to content

Fix index path

Fix index path #2055

Workflow file for this run

name: Dotnet format check
on:
push:
branches: [ main ]
paths:
- 'backend/**'
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]
paths:
- 'backend/**'
workflow_dispatch:
jobs:
dotnet-format-check:
name: Format check
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0.418-alpine3.18 # hardcode version until microsoft fixes issue in github runners
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: FormatCheck
run: |
dotnet format backend/Designer.sln --verify-no-changes