Skip to content

Add New SavedQuery Protocol #369

Add New SavedQuery Protocol

Add New SavedQuery Protocol #369

Workflow file for this run

name: Python Tests
on:
workflow_dispatch:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
pytest:
name: Run Tests / Python ${{ matrix.python-version }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
shell: bash
run: pip3 install hatch
- name: Run Python Tests
run: hatch run dev-env:pytest tests