Skip to content

chore: Remove official net6.0 support #402

chore: Remove official net6.0 support

chore: Remove official net6.0 support #402

Workflow file for this run

name: Code formatting
on:
pull_request:
paths:
- '**/*.cs'
- '**/*.csproj'
- '**/*.sln'
jobs:
dotnet-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Check formatting
run: dotnet format --verify-no-changes --verbosity diagnostic