Skip to content

feat: add LinkupRetriever class #2

feat: add LinkupRetriever class

feat: add LinkupRetriever class #2

Workflow file for this run

name: Test
on:
pull_request:
branches: ["main"]
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: ["main"]
jobs:
test:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install-dev
- name: Run tests
run: |
make test