protos(feature): new boolean field to toggle live rules #1646
This file contains hidden or 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: python-ci | |
| on: | |
| release: | |
| types: [ created ] | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_call: | |
| jobs: | |
| test-python: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: python | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.8" | |
| - name: Pip install | |
| id: install | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install '.[development,openssl,tdms,rosbags,hdf5,sift-stream]' | |
| - name: Lint | |
| run: | | |
| ruff check | |
| - name: Format | |
| run: | | |
| ruff format --check | |
| - name: MyPy | |
| run: | | |
| mypy lib | |
| - name: Pyright | |
| run: | | |
| pyright lib | |
| - name: Pytest Unit Tests | |
| run: | | |
| pytest -m "not integration" | |
| - name: Pytest Integration Tests | |
| env: | |
| SIFT_GRPC_URI: ${{ vars.SIFT_GRPC_URI }} | |
| SIFT_REST_URI: ${{ vars.SIFT_REST_URI }} | |
| SIFT_API_KEY: ${{ secrets.SIFT_API_KEY }} | |
| run: | | |
| pytest -m "integration" | |
| - name: Sync Stubs Mypy | |
| working-directory: python/lib | |
| run: | | |
| stubtest \ | |
| --mypy-config-file ../pyproject.toml \ | |
| sift_client.resources.sync_stubs |