You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/pr_test_peft_backend.yml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,10 @@ jobs:
35
35
run: |
36
36
ruff check examples tests src utils scripts
37
37
ruff format examples tests src utils scripts --check
38
+
- name: Check if failure
39
+
if: ${{ failure() }}
40
+
run: |
41
+
echo "Quality check failed. Please ensure the right dependency versions are installed with 'pip install -e .[quality]' and run 'make style && make quality'" >> $GITHUB_STEP_SUMMARY
38
42
39
43
check_repository_consistency:
40
44
needs: check_code_quality
@@ -54,6 +58,10 @@ jobs:
54
58
python utils/check_copies.py
55
59
python utils/check_dummies.py
56
60
make deps_table_check_updated
61
+
- name: Check if failure
62
+
if: ${{ failure() }}
63
+
run: |
64
+
echo "Repo consistency check failed. Please ensure the right dependency versions are installed with 'pip install -e .[quality]' and run 'make fix-copies'" >> $GITHUB_STEP_SUMMARY
Copy file name to clipboardExpand all lines: .github/workflows/pr_tests.yml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,10 @@ jobs:
43
43
run: |
44
44
ruff check examples tests src utils scripts
45
45
ruff format examples tests src utils scripts --check
46
+
- name: Check if failure
47
+
if: ${{ failure() }}
48
+
run: |
49
+
echo "Quality check failed. Please ensure the right dependency versions are installed with 'pip install -e .[quality]' and run 'make style && make quality'" >> $GITHUB_STEP_SUMMARY
46
50
47
51
check_repository_consistency:
48
52
needs: check_code_quality
@@ -62,6 +66,10 @@ jobs:
62
66
python utils/check_copies.py
63
67
python utils/check_dummies.py
64
68
make deps_table_check_updated
69
+
- name: Check if failure
70
+
if: ${{ failure() }}
71
+
run: |
72
+
echo "Repo consistency check failed. Please ensure the right dependency versions are installed with 'pip install -e .[quality]' and run 'make fix-copies'" >> $GITHUB_STEP_SUMMARY
0 commit comments