Skip to content

Commit

Permalink
Merge pull request #14 from tomii9273/debug_ga
Browse files Browse the repository at this point in the history
add debug
  • Loading branch information
tomii9273 committed Apr 12, 2024
2 parents 39f226d + cf67ab8 commit 0d4ca62
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/check_math_formula.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,21 @@ jobs:
run: |
echo "start"
n_head_line=$(grep -o '^\$' src/README.md | wc -l)
echo "n_head_line: $n_head_line"
n_tail_line=$(grep -o '\$$' src/README.md | wc -l)
echo "n_tail_line: $n_tail_line"
n_head_bracket=$(grep -o '(\$' src/README.md | wc -l)
echo "n_head_bracket: $n_head_bracket"
n_tail_bracket=$(grep -o '\$)' src/README.md | wc -l)
echo "n_tail_bracket: $n_tail_bracket"
n_head=$(grep -o ' \$' src/README.md | wc -l)
echo "n_head: $n_head"
n_tail=$(grep -o '\$ ' src/README.md | wc -l)
echo "n_tail: $n_tail"
n_valid=$((n_head_line+n_tail_line+n_head_bracket+n_tail_bracket+n_head+n_tail))
echo "n_valid: $n_valid"
n_all=$(grep -o '\$' src/README.md | wc -l)
echo "n_all: $n_all"
echo "count end"
Expand Down

0 comments on commit 0d4ca62

Please sign in to comment.