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 b6569ca commit a713564Copy full SHA for a713564
.github/workflows/backend-motoko-format-check.yml
@@ -23,7 +23,7 @@ jobs:
23
run: bash .github/workflows/provision-linux.sh
24
- name: Run MOPS Format Check Linux
25
run: |
26
- cd backend/mo/ic_vetkeys
27
- echo "Checking directory: $(pwd)" && mops format --check
28
- cd ../canisters
29
- for d in $(ls); do cd $d && echo "Checking directory: $(pwd)" && mops format --check; cd ..; done
+ for d in $(find . -type d -name '.mops' -prune -o -type f -name 'mops.toml' -printf '%h\n'); do
+ cd $d
+ echo "Checking directory: $(pwd)" && mops format --check
+ done
0 commit comments