Skip to content

bump version to 0.1.8 and regen docs #167

bump version to 0.1.8 and regen docs

bump version to 0.1.8 and regen docs #167

Workflow file for this run

name: Docs
on:
pull_request:
push:
branches:
- main
env:
RUST_BACKTRACE: 1
jobs:
docs:
name: Check Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: cargo doc --all --no-deps --document-private-items --all-features
uses: actions-rs/cargo@v1
with:
command: doc
args: --all --no-deps --document-private-items --all-features