Skip to content

feat: port to Typesense #10

feat: port to Typesense

feat: port to Typesense #10

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: |
sudo apt update -y
sudo apt install -y shellcheck
make install
- name: Run tests
run: make test