Skip to content

feature :

feature : #22

Workflow file for this run

name: .NET format
on:
push:
branches: [ "vv" ]
#pull_request:
#branches: [ "main" ]
jobs:
dotnet-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Format
run: dotnet format --verify-no-changes --verbosity diagnostic