mirror of
https://github.com/microsoft/terminal.git
synced 2026-05-17 15:36:35 +00:00
16 lines
380 B
YAML
16 lines
380 B
YAML
jobs:
|
|
- job: CodeFormatCheck
|
|
displayName: Check Code Format
|
|
pool: { vmImage: windows-latest }
|
|
|
|
steps:
|
|
- checkout: self
|
|
fetchDepth: 1
|
|
fetchTags: false # Tags still result in depth > 1 fetch; we don't need them here
|
|
submodules: false
|
|
clean: true
|
|
|
|
- pwsh: |-
|
|
.\build\scripts\Invoke-FormattingCheck.ps1
|
|
displayName: 'Run formatters'
|