1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Testing - Marking failed code formatting #332

This commit is contained in:
Pasukhin Dmitry 2025-02-03 10:26:58 +01:00 committed by GitHub
parent b9429d0708
commit 3ce9ec7651
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 7 deletions

View File

@ -61,7 +61,9 @@ runs:
run: | run: |
git diff > format.patch git diff > format.patch
if ((Get-Item format.patch).length -gt 0) { if ((Get-Item format.patch).length -gt 0) {
echo "::error::Files need formatting. To fix: 1. Download format.patch 2. \"git apply format.patch\" 3. Commit and push"
echo "has_changes=true" >> $env:GITHUB_OUTPUT echo "has_changes=true" >> $env:GITHUB_OUTPUT
exit 1
} }
- name: Upload patch - name: Upload patch

View File

@ -33,13 +33,6 @@ jobs:
with: with:
base-ref: ${{ github.event.pull_request.base.ref || 'master' }} base-ref: ${{ github.event.pull_request.base.ref || 'master' }}
- name: Fail if changes needed
if: steps.clang-format-check.outputs.has-changes == 'true'
shell: pwsh
run: |
echo "::error::Files need formatting. To fix: 1. Download format.patch 2. \"git apply format.patch\" 3. Commit and push"
exit 1
prepare-and-build-windows-x64: prepare-and-build-windows-x64:
name: Prepare and Build on Windows with MSVC (x64) name: Prepare and Build on Windows with MSVC (x64)
runs-on: windows-2022 runs-on: windows-2022