Skip to content

feat: port to Typesense #8

feat: port to Typesense

feat: port to Typesense #8

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: |
apt update -y
apt install -y shellcheck
make install
- name: Run tests
run: make test