Skip to content

Added to User: create_business, get_extended_access_token, get_access… #8

Added to User: create_business, get_extended_access_token, get_access…

Added to User: create_business, get_extended_access_token, get_access… #8

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: 2.7
tox-env: py27
- python-version: 3.5
tox-env: py35
- python-version: 3.6
tox-env: py36
- python-version: 3.7
tox-env: py37
- python-version: 3.8
tox-env: py38
- python-version: 3.9
tox-env: py39
- python-version: 3.10
tox-env: py310
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Test with tox
run: |
pip install tox
tox -e ${{ matrix.tox-env }}