Skip to content

Commit 729eadf

Browse files
committed
print current directory before running mops format --check
1 parent 02df2e4 commit 729eadf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/backend-motoko-format-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Run MOPS Format Check Linux
2525
run: |
2626
cd backend/mo/ic_vetkeys
27-
mops format --check
27+
echo "Checking directory: $(pwd)" && mops format --check
2828
cd ../canisters
29-
for d in $(ls); do cd $d && mops format --check; cd ..; done
29+
for d in $(ls); do cd $d && echo "Checking directory: $(pwd)" && mops format --check; cd ..; done

0 commit comments

Comments
 (0)