forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Integrate user guide (pola-rs#11089)
- Loading branch information
Showing
170 changed files
with
10,733 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Build documentation | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- docs/** | ||
- mkdocs.yml | ||
- .github/workflows/docs-global.yml | ||
push: | ||
tags: | ||
- py-** | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
folder-path: docs | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: psf/black@stable | ||
with: | ||
src: docs/src/python | ||
version: "23.7.0" | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Create virtual environment | ||
run: | | ||
python -m venv .venv | ||
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH | ||
- name: Install dependencies | ||
run: | | ||
pip install -r py-polars/requirements-dev.txt | ||
pip install -r docs/requirements.txt | ||
- name: Set up Rust | ||
run: rustup show | ||
|
||
- name: Cache Rust | ||
uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: py-polars | ||
save-if: ${{ github.ref_name == 'main' }} | ||
|
||
- name: Install Polars | ||
working-directory: py-polars | ||
run: | | ||
source activate | ||
maturin develop | ||
- name: Set up Graphviz | ||
uses: ts-graphviz/setup-graphviz@v1 | ||
|
||
- name: Build documentation | ||
run: mkdocs build | ||
|
||
- name: Add .nojekyll | ||
if: ${{ github.ref_type == 'tag' }} | ||
working-directory: site | ||
run: touch .nojekyll | ||
|
||
- name: Deploy docs | ||
if: ${{ github.ref_type == 'tag' }} | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: site | ||
clean-exclude: | | ||
docs/ | ||
py-polars/ | ||
single-commit: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,37 @@ | ||
*.iml | ||
*.so | ||
*.ipynb | ||
.DS_Store | ||
.ENV | ||
.coverage | ||
.env | ||
.hypothesis/ | ||
.idea/ | ||
.ipynb_checkpoints/ | ||
.mypy_cache/ | ||
.pytest_cache/ | ||
.python-version | ||
.yarn/ | ||
.vscode/ | ||
__pycache__/ | ||
AUTO_CHANGELOG.md | ||
Cargo.lock | ||
coverage.lcov | ||
coverage.xml | ||
data/ | ||
node_modules/ | ||
polars/vendor | ||
target/ | ||
venv*/ | ||
.venv*/ | ||
|
||
# OS | ||
.DS_Store | ||
|
||
# IDE | ||
.idea/ | ||
.vscode/ | ||
.vim | ||
|
||
# Python | ||
.hypothesis/ | ||
.mypy_cache/ | ||
.pytest_cache/ | ||
.venv/ | ||
__pycache__/ | ||
.coverage | ||
|
||
# Rust | ||
target/ | ||
Cargo.lock | ||
|
||
# Project | ||
/docs/data/ | ||
/docs/images/ | ||
/docs/people.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.