Skip to content

Commit 2c0174f

Browse files
committed
fix CI, add link
1 parent a0d8d77 commit 2c0174f

File tree

5 files changed

+47
-1
lines changed

5 files changed

+47
-1
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
2323
- name: Build PDF Documentation
2424
run: |
25-
sudo apt install apt-get install -y texlive-latex-base
25+
sudo apt-get install -y texlive-latex-base
2626
make -C doc latexpdf
2727
2828
- name: Upload HTML Documentation

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Simple makefile to simplify repetitive build env management tasks under posix
2+
3+
CODESPELL_DIRS ?= ./example_coverage
4+
CODESPELL_SKIP ?= "*.pyc,*.xml,*.txt,*.gif,*.png,*.jpg,*.js,*.html,*.doctree,*.ttf,*.woff,*.woff2,*.eot,*.mp4,*.inv,*.pickle,*.ipynb,flycheck*,./.git/*,./.hypothesis/*,*.yml,./doc/build/*,./doc/images/*,./dist/*,*~,.hypothesis*,./doc/source/examples/*,*cover,*.dat,*.mac"
5+
CODESPELL_IGNORE ?= "ignore_words.txt"
6+
7+
all: doctest
8+
9+
doctest: codespell
10+
11+
codespell:
12+
@echo "Running codespell"
13+
@codespell $(CODESPELL_DIRS) -S $(CODESPELL_SKIP) -I $(CODESPELL_IGNORE)

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ This guide serves as the central document for:
88
library.
99
- Anyone who is interested in learning more about the PyAnsys
1010
project and libraries.
11+
12+
13+
Web-based documentation will be posted upon approval.
14+
15+
PDF version of this guide can be found in the release notes in `Releases
16+
<https://github.com/pyansys/about/releases>`_.

ignore_words.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
REnabled
2+
renabled
3+
delet
4+
appen
5+
parm
6+
pres
7+
WAN
8+
filname
9+
ans
10+
tread
11+
wan
12+
levl
13+
mater
14+
aadd
15+
extrem
16+
imagin
17+
ist
18+
nin
19+
sord
20+
struc
21+
emiss
22+
vise
23+
datas
24+
fo

requirements_style.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
codespell==2.0.0
2+
3+

0 commit comments

Comments
 (0)