Skip to content

Commit

Permalink
Merge pull request #14 from adikhoff/3.6
Browse files Browse the repository at this point in the history
Sync ci/cd and migration scripts
  • Loading branch information
adikhoff authored Oct 11, 2024
2 parents 743901d + a4ec59d commit c1314fe
Show file tree
Hide file tree
Showing 4 changed files with 360 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ jobs:
- name: Linter checks
run: |
bash _tools/format.sh
codespell -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt {about,community,development,getting_started,tutorials}/**/*.rst
codespell -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt -S tutorials/i18n/locales.rst {about,community,contributing,getting_started,tutorials}/**/*.rst
- name: Migrate to Redot
run: |
python migrate.py . _migrated True
# Use dummy builder to improve performance as we don't need the generated HTML in this workflow.
- name: Sphinx build
run: |
sphinx-build --color -b dummy -d _build/doctrees -W . _build/html
run: make SPHINXOPTS='--color -W' SPHINXSOURCEDIR='./_migrated' dummy
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
.env

_build/
_build-old/
_migrated/
env/
__pycache__
*.pyc
Expand Down
Loading

0 comments on commit c1314fe

Please sign in to comment.