Skip to content

⬆️ Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/Mindee #875

⬆️ Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/Mindee

⬆️ Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/Mindee #875

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