Skip to content

fix: actually fix the docs #2374

fix: actually fix the docs

fix: actually fix the docs #2374

Workflow file for this run

name: Run Checks
on: [push]
jobs:
checks:
name: Run Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Install protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: '3.20.1'
- uses: Swatinem/rust-cache@v2
- name: Install cargo-make
uses: actions-rs/cargo@v1
with:
command: install
args: --debug cargo-make
- name: Install poetry
uses: snok/install-poetry@v1
- name: Run Rust CI
uses: actions-rs/cargo@v1
env:
CARGO_MAKE_RUN_CHECK_FORMAT: true
CARGO_MAKE_RUN_CLIPPY: true
CARGO_MAKE_BUILD_EXAMPLES: true
with:
command: make
args: --cwd crates/lib --makefile Makefile.toml ci-flow
- name: Run Python CI
uses: actions-rs/cargo@v1
with:
command: make
args: --cwd crates/python --makefile Makefile.toml pytest-flow