Skip to content

Commit 09108db

Browse files
revert changes made for debugging purposes
1 parent 430f080 commit 09108db

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,6 @@ jobs:
9393
- name: Install dependencies
9494
run: ./.github/scripts/install_dependencies.sh
9595

96-
- name: Print Git Config
97-
run: git config --list
98-
9996
- name: Test
10097
run: ./dev/${{ matrix.script }}
10198

dev/check-format.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env bash
2-
set -x
32

43
clean=$(git status -s -uno | wc -l) #Short ignore untracked
54

@@ -9,8 +8,7 @@ if [ $clean -ne 0 ]; then
98
else
109
echo "Code Formatting Check"
1110
echo "====================="
12-
make format"$1"
13-
git status -s -uno
11+
make format"$1" > /dev/null 2>&1
1412

1513
valid_format=$(git diff | wc -l)
1614

0 commit comments

Comments
 (0)