Skip to content

Aligns SDK endpoints with Vandoor telemetry architecture #24

Aligns SDK endpoints with Vandoor telemetry architecture

Aligns SDK endpoints with Vandoor telemetry architecture #24

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run tests
run: pytest
- name: Run linting
run: |
flake8 replicated tests examples
mypy replicated
- name: Check formatting
run: |
black --check replicated tests examples
isort --check-only replicated tests examples