Skip to content

Add smoke for event service and client. #337

Add smoke for event service and client.

Add smoke for event service and client. #337

Workflow file for this run

name: Continuous Integration [python]
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests-cpu:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip3 install -e .[dev]
- name: Run Tests
run: pytest -v py/tests/ --mypy