Skip to content

Fix get_config to be compatible with openapi spec #52

Fix get_config to be compatible with openapi spec

Fix get_config to be compatible with openapi spec #52

name: tests
on:
push:
branches:
- master
paths-ignore:
- README.md
- 'tools/**'
pull_request:
paths-ignore:
- README.md
- 'tools/**'
jobs:
lint-and-pytest:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python setup.py install
- run: pip install flake8 isort -r test/requirements.txt
- run: isort --line-width=100 --check-only --force-single-line-imports .
- run: flake8
- run: pytest -s test/