Skip to content

Commit

Permalink
New LTG development cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jan 19, 2025
1 parent 52a5c54 commit c226481
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
32 changes: 31 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
check:
pdf:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
Expand All @@ -29,3 +29,33 @@ jobs:
name: test-result
path: |
paper.pdf
spell-checking:
# This is based on https://github.com/mh61503891/action-paper-aspell/tree/master
#
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4

# Original action does not work well - see https://github.com/awalsh128/cache-apt-pkgs-action/pull/136
# The action is not updated - and thus the dictionaries are not updated

- uses: bscott-zebra/cache-apt-pkgs-action@bdb5bbaae8f11b3e4e63cf78e303ac1519dcff7f
with:
packages: aspell aspell-en
version: 1.0
execute_install_scripts: true

- name: aspell
run: |
echo "| file | status |" >> $GITHUB_STEP_SUMMARY
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 list < $tex | sort | uniq | tr '\n' ' ')
if [ -z "$words" ]; then
echo "| $tex | ✅ |" >> $GITHUB_STEP_SUMMARY
else
echo "| $tex | $words |" >> $GITHUB_STEP_SUMMARY
fi
done
2 changes: 1 addition & 1 deletion generator-latex-template
Submodule generator-latex-template updated 33 files
+0 −1 .github/generate-workflows.py
+0 −1,365 .github/workflows/check-acmart-both-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-acmart-both-bibtex-2024-true.yml
+0 −1,365 .github/workflows/check-acmart-pdflatex-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-acmart-pdflatex-bibtex-2024-true.yml
+0 −1 .github/workflows/check-ieee-conference-both-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-ieee-conference-both-bibtex-2024-true.yml
+0 −1,365 .github/workflows/check-ieee-conference-pdflatex-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-ieee-conference-pdflatex-bibtex-2024-true.yml
+0 −1,365 .github/workflows/check-ieee-journal-both-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-ieee-journal-both-bibtex-2024-true.yml
+0 −1,365 .github/workflows/check-ieee-journal-pdflatex-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-ieee-journal-pdflatex-bibtex-2024-true.yml
+0 −1,365 .github/workflows/check-ieee-peerreview-both-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-ieee-peerreview-both-bibtex-2024-true.yml
+0 −1,365 .github/workflows/check-ieee-peerreview-pdflatex-bibtex-2024-false.yml
+0 −1,365 .github/workflows/check-ieee-peerreview-pdflatex-bibtex-2024-true.yml
+0 −2,645 .github/workflows/check-lncs-both-bibtex-2024-false.yml
+0 −2,645 .github/workflows/check-lncs-both-bibtex-2024-true.yml
+0 −2,645 .github/workflows/check-lncs-pdflatex-bibtex-2024-false.yml
+0 −2,645 .github/workflows/check-lncs-pdflatex-bibtex-2024-true.yml
+73 −0 .github/workflows/check-make.yml
+14 −2 CHANGELOG.md
+1 −1 README.md
+1 −0 generators/app/index.js
+31 −1 generators/app/templates/.github/workflows/check.yml
+1 −0 generators/app/templates/Dockerfile.dante
+1 −1 generators/app/templates/Dockerfile.iot
+2 −2 generators/app/templates/Dockerfile.reitzig
+100 −10 generators/app/templates/Makefile
+14 −1 generators/app/templates/README.en.md
+1 −0 generators/app/templates/Texlivefile
+8 −0 generators/app/templates/font.preamble.en.tex

0 comments on commit c226481

Please sign in to comment.