chore(deps): update dependency libgit2sharp to v0.28.0 #1500
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: Dotnet format check | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'backend/**' | |
pull_request: | |
branches: [ master ] | |
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.416-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 |