Skip to content

Update BENCHMARKING.md with sampling benchmarks and iterator performance #3

Update BENCHMARKING.md with sampling benchmarks and iterator performance

Update BENCHMARKING.md with sampling benchmarks and iterator performance #3

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [mainline]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Build docs
run: cargo doc --no-deps --document-private-items
- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=keyspace_tracker/index.html">' > target/doc/index.html
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: target/doc
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4