chore(grpc-asyncio): replace hatch with poetry #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-local | |
- name: run ruff | |
run: poetry poe format-check | |
- 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 |