Feature/#77 #389
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: Linter | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET SDK # detected from global.json | |
uses: actions/[email protected] | |
- name: Add Problem Matcher for dotnet-format | |
uses: xt0rted/[email protected] | |
- name: Lint | |
run: dotnet format --verify-no-changes --verbosity detailed |