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