Skip to content

STAT-11: Use loop unrolling in mean function even when handling or no… #29

STAT-11: Use loop unrolling in mean function even when handling or no…

STAT-11: Use loop unrolling in mean function even when handling or no… #29

Workflow file for this run

name: Deploy Documentation
on:
push:
branches-ignore:
- 'master'
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Build project
run: yarn build
- name: Generate documentation
run: yarn docs
- name: Run benchmarks
run: bun run benchmarks/index.ts
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: gh-pages