2023-04-05 08:41:24 +00:00
|
|
|
name: Tests
|
2023-04-05 08:30:32 +00:00
|
|
|
|
|
|
|
on:
|
2023-04-10 06:19:22 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-04-05 08:30:32 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
2023-04-07 01:27:01 +00:00
|
|
|
build-linux:
|
2023-04-05 08:30:32 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-04-05 08:34:19 +00:00
|
|
|
with:
|
2023-04-05 08:35:15 +00:00
|
|
|
submodules: "true"
|
2023-04-05 08:30:32 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2023-06-10 03:23:16 +00:00
|
|
|
python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi sse-starlette httpx uvicorn
|
|
|
|
pip install . -v
|
2023-04-05 08:30:32 +00:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2023-06-10 03:23:16 +00:00
|
|
|
pytest
|
2023-04-07 01:27:01 +00:00
|
|
|
|
|
|
|
build-windows:
|
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: "true"
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2023-06-10 03:23:16 +00:00
|
|
|
python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi sse-starlette httpx uvicorn
|
|
|
|
pip install . -v
|
2023-04-07 01:27:01 +00:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2023-06-10 03:23:16 +00:00
|
|
|
pytest
|
2023-04-07 01:27:01 +00:00
|
|
|
|
2023-04-07 01:28:03 +00:00
|
|
|
build-macos:
|
2023-04-07 01:27:01 +00:00
|
|
|
|
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: "true"
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2023-06-10 03:23:16 +00:00
|
|
|
python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi sse-starlette httpx uvicorn
|
|
|
|
pip install . -v
|
2023-04-07 01:27:01 +00:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2023-06-10 03:23:16 +00:00
|
|
|
pytest
|