Skip to content

Fix/issue 5 python endpoints #13

Fix/issue 5 python endpoints

Fix/issue 5 python endpoints #13

Workflow file for this run

name: OS matrix CI
on:
push:
branches:
- master
paths-ignore:
- '**/README.md'
- 'pre-commit.yml'
- 'release.yml'
- 'test.yml'
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools
python3 -m pip install .[dev]
- name: Tox
run: |
python3 -m tox
coverage run -m pytest test
coverage report