We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b3de0 commit 1f863ddCopy full SHA for 1f863dd
.github/workflows/hf-xet-tests.yml
@@ -45,4 +45,9 @@ jobs:
45
- name: Check Cargo.lock has no uncommitted changes
46
run: |
47
# the Build wheel step would update hf_xet/Cargo.lock if it is out of date
48
- test -z "$(git status --porcelain hf_xet/Cargo.lock)" || (echo "hf_xet/Cargo.lock has uncommitted changes!" && exit 1)
+ if [ -n "$(git status --porcelain hf_xet/Cargo.lock)" ]; then
49
+ echo "::error::hf_xet/Cargo.lock has uncommitted changes!"
50
+ echo "Diff:"
51
+ git diff hf_xet/Cargo.lock
52
+ exit 1
53
+ fi
0 commit comments