Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jan 20, 2025
1 parent f82a9ef commit 811a78e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ jobs:
echo "| -- | -- |" >> $GITHUB_STEP_SUMMARY
for tex in $(ls *.tex content/*.tex 2>/dev/null); do
# One could add a personal dictionary using --personal=.aspell.en.pws
words=$(aspell --mode=tex -l en_US --encoding=utf-8 --conf=./.aspell.conf -p ./.aspell.en.pws list < $tex | sort | uniq | tr '\n' ' ')
# Words are output in the order they appear in the document
words=$(aspell --mode=tex -l en_US --encoding=utf-8 --conf=./.aspell.conf -p ./.aspell.en.pws list < $tex | tr '\n' ' ')
if [ -z "$words" ]; then
echo "| $tex | ✅ |" >> $GITHUB_STEP_SUMMARY
else
Expand Down

0 comments on commit 811a78e

Please sign in to comment.