Skip to content

chore: clean up docs for all APIs a bit #19

chore: clean up docs for all APIs a bit

chore: clean up docs for all APIs a bit #19

Workflow file for this run

name: Code QA CI
on: push
jobs:
python-ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
defaults:
run:
working-directory: ./python/remotivelabs-broker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2
- run: poetry self add 'poethepoet[poetry_plugin]'
- name: Generate stubs (and build package)
env:
NO_TTY: true
run: ./docker-build.sh
- run: poetry install
- name: run pytest
run: poetry poe test
- name: run ruff
run: poetry poe lint
- name: run mypy
run: poetry poe mypy-check
rust-cargo:
name: Rust cargo tasks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build and run tests
run: |
pushd rust/remotivelabs-broker
cargo test
popd
- name: Check format
run: |
pushd rust/remotivelabs-broker
cargo fmt --check
popd