Skip to content

Add documentation throughout the codebase. (#61) #200

Add documentation throughout the codebase. (#61)

Add documentation throughout the codebase. (#61) #200

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
tests:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-hack
uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- run: cargo hack check --feature-powerset
- run: cargo hack clippy --feature-powerset
- run: cargo hack test --feature-powerset
clippy-nightly:
name: clippy nightly
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- run: cargo +nightly fmt --all -- --check
- run: cargo +nightly clippy --no-default-features -- -D warnings
- run: cargo +nightly clippy -- -D warnings