Skip to content

Do not list known endpoints fps in check-endpoints.py #379

Do not list known endpoints fps in check-endpoints.py

Do not list known endpoints fps in check-endpoints.py #379

Workflow file for this run

name: Test
on:
push:
branches: ["master"]
paths:
- ".github/workflows/test.yml"
- "**.py"
- "poetry.lock"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/test.yml"
- "**.py"
- "poetry.lock"
- "pyproject.toml"
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install --with dev
- name: Test
run: poetry run pytest