Skip to content

Commit

Permalink
Merge pull request #562 from libtom/minor-fixes
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
sjaeckel committed Jun 22, 2023
2 parents 38bb369 + 4c118b4 commit 3746c58
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.github/* export-ignore
/appveyor.yml export-ignore
/doc/.latexindent.yaml export-ignore

/** export-subst
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@ on:
- /^ci\/.*$/

jobs:
Docs:
runs-on: ubuntu-20.04
container: texlive/texlive:latest-full
steps:
- uses: actions/checkout@v2
- name: generate PDF
run: |
make docs V=1
cp doc/bn.pdf bn-${{ github.run_id }}.pdf
- name: upload PDF
uses: actions/upload-artifact@v3
with:
name: bn-${{ github.run_id }}.pdf
path: bn-${{ github.run_id }}.pdf
Testme:
runs-on: ${{ matrix.os }}
strategy:
Expand Down
2 changes: 1 addition & 1 deletion doc/bn.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2004,7 +2004,7 @@ \subsection{Example}
mp_error_to_string(e));
exit(EXIT_FAILURE);
}
printf("%d\n",output);
printf("%d\textbackslash{}n",output);
mp_clear(&x);
exit(EXIT_SUCCESS);
Expand Down

0 comments on commit 3746c58

Please sign in to comment.