Skip to content

Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1 #16

Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1

Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1 #16

Workflow file for this run

name: Linter check
on:
workflow_dispatch:
pull_request:
jobs:
linter-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Dotnet restore
run: dotnet tool restore
- name: CSharpier format check
run: |
dotnet csharpier . --check
echo "run 'dotnet build' to fix the formatting of the code automatically"