Skip to content

Add dotnet-format.yml #1

Add dotnet-format.yml

Add dotnet-format.yml #1

Workflow file for this run

name: dotnet format
on: [push, pull_request]
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: '7.0.x'
- name: Check out code
uses: actions/checkout@v2
- name: Run dotnet format
run: dotnet format --no-restore --verify-no-changes