Skip to content

Bump version in Client.py to 5.3.0 (#260) #287

Bump version in Client.py to 5.3.0 (#260)

Bump version in Client.py to 5.3.0 (#260) #287

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Python CI - test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Lint with flake8
run: flake8
- name: Test with nose2
run: nose2