Skip to content

Create create_tag.yml #88

Create create_tag.yml

Create create_tag.yml #88

Workflow file for this run

name: Format
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
format:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- 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 --version "8.*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json
- name: Run dotnet-format
run: dotnet-format whitespace --verify-no-changes