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 a7b04ff commit fea8f84Copy full SHA for fea8f84
.github/workflows/pr_style_bot.yml
@@ -64,9 +64,20 @@ jobs:
64
run: |
65
pip install .[quality]
66
67
+ - name: Download Makefile from main branch
68
+ run: |
69
+ curl -o main_Makefile https://raw.githubusercontent.com/huggingface/diffusers/main/Makefile
70
+
71
+ - name: Compare Makefiles
72
73
+ if ! diff -q main_Makefile Makefile; then
74
+ echo "Error: The Makefile has changed. Please ensure it matches the main branch."
75
+ exit 1
76
+ fi
77
+ echo "No changes in Makefile. Proceeding..."
78
79
- name: Run make style and make quality
80
- # Should we be comparing the Makefile to check for any differences with `diffusers` main?
81
make style && make quality
82
83
- name: Commit and push changes
0 commit comments