Skip to content

Merge branch 'main' into add-query-explain #96

Merge branch 'main' into add-query-explain

Merge branch 'main' into add-query-explain #96

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '**'
pull_request_target:
branches:
- '**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run tests
run: make test