mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-08 11:46:53 +08:00
Fix format check worklow
git status would show more files than we want to check.
This commit is contained in:
parent
f3fe1e3390
commit
63d7c3ccba
4
.github/workflows/format-check.yml
vendored
4
.github/workflows/format-check.yml
vendored
@ -56,5 +56,5 @@ jobs:
|
|||||||
|
|
||||||
- name: Fail on format changes
|
- name: Fail on format changes
|
||||||
run: |
|
run: |
|
||||||
git status --porcelain
|
git ls-files -m
|
||||||
if [[ `git status --porcelain` ]]; then echo "detected format changes!" & exit 1; fi
|
if [[ `git ls-files -m` ]]; then echo "Detected formatting errors!" & exit 1; fi
|
||||||
Loading…
x
Reference in New Issue
Block a user