Skip to content

Use example for path parameters #97

Use example for path parameters

Use example for path parameters #97

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Run pre-commit
run: |
python -m pip install tox
python -m tox -e pre-commit
pytest:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Pull OpenAPI specs for tests
run: |
git submodule update --init --recursive
- name: Run pytest
run: |
python -m pip install tox
python -m tox -e py
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Run sphinx
run: |
python -m pip install tox
python -m tox -e docs