Skip to content

docs: updated docs

docs: updated docs #8

Workflow file for this run

name: "Rust CI"
on:
push:
branches:
- "main"
- "feature/**"
pull_request:
branches:
- "main"
# Run manually
workflow_dispatch:
permissions:
checks: write
jobs:
rust-ci:
name: "Format, Lint, Test, and Build"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: "${{ matrix.os }}"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Format
uses: actions-rust-lang/rustfmt@v1
- name: Lint
uses: auguwu/[email protected]
with:
token: ${{secrets.GITHUB_TOKEN}}
- name: Test
run: cargo test --all-features
- name: Build
uses: actions-rs/cargo@v1
with:
command: build