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 f520c17 commit de464fcCopy full SHA for de464fc
.github/workflows/test.yml
@@ -91,6 +91,9 @@ jobs:
91
- name: Install dependencies
92
run: ./.github/scripts/install_dependencies.sh
93
94
+ - name: Print Git Config
95
+ run: git config --list
96
+
97
- name: Test
98
run: ./dev/${{ matrix.script }}
99
dev/check-format.sh
@@ -1,4 +1,5 @@
1
#!/usr/bin/env bash
2
+set -x
3
4
clean=$(git status -s -uno | wc -l) #Short ignore untracked
5
@@ -8,7 +9,8 @@ if [ $clean -ne 0 ]; then
8
9
else
10
echo "Code Formatting Check"
11
echo "====================="
- make format"$1" > /dev/null 2>&1
12
+ make format"$1"
13
+ git status -s -uno
14
15
valid_format=$(git diff | wc -l)
16
0 commit comments