Add NuGet shield to README #1946
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 | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check-format: | |
runs-on: windows-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core 3.1 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.x | |
- name: Install format tool | |
run: dotnet tool install -g dotnet-format | |
- name: dotnet format | |
run: dotnet-format --folder --check --exclude .\src\Sarif\Autogenerated\ |