Files
terminal/build/pipelines/templates-v2/job-check-code-format.yml
Dustin L. Howett 63d7a19ce5 build: update all Azure DevOps pools to windows-latest (#19522)
I will follow this up by switching our default pool build image to
Windows Server 2022.
2025-11-04 23:57:15 +00:00

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'