Skip to content

fix: πŸ› dtypes should take effect on readCSV for buffer input (#68) #31

fix: πŸ› dtypes should take effect on readCSV for buffer input (#68)

fix: πŸ› dtypes should take effect on readCSV for buffer input (#68) #31

Workflow file for this run

name: Docs
on:
push:
branches:
- main
- docs
jobs:
test:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-11-24
override: true
components: rustfmt, clippy
- name: Install ghp-import
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ghp-import
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 16
- name: Build node reference
run: |
npm install
npx typedoc
- name: deploy docs
run: |
mkdir -p target/doc
cp -r docs/* target/doc/
echo ghp-import step
ghp-import -n target/doc && \
git push -qf https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git gh-pages