Skip to content

Get version using importlib #107

Get version using importlib

Get version using importlib #107

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- 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", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Run sphinx
run: |
python -m pip install tox
python -m tox -e docs