Update README.md #760
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: Check-style-workflow | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [opened, synchronize, reopened, edited] | |
push: | |
jobs: | |
Check-style: | |
runs-on: windows-latest | |
if: contains(github.event.pull_request.body, 'The workflow check-style was intentionally skipped.') == false | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dotnet tools | |
working-directory: src | |
run: dotnet tool restore | |
if: always() | |
- name: Check format | |
working-directory: src | |
run: powershell .\CheckFormat.ps1 | |
if: always() |