Skip to content

Client initialisation code extracted #14

Client initialisation code extracted

Client initialisation code extracted #14

Workflow file for this run

name: Test Python SDK
on:
push:
branches:
- "main"
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
flake8 */ --count --ignore=F821 --max-complexity=10 --max-line-length=120 --statistics