Skip to content

Fix and improve rustdoc #43

Fix and improve rustdoc

Fix and improve rustdoc #43

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
toolchain: [stable, beta, nightly, 1.56.0]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Run cargo check --all
env:
RUSTFLAGS: -D warnings
run: |
cargo check --all
- name: Run the tests
env:
RUSTFLAGS: -D warnings
run: |
cargo test --all
- name: Run cargo doc
run: |
cargo doc --all