Skip to content

Fix intraday puller: timestamp pagination to now, rate-limit backoff,… #57

Fix intraday puller: timestamp pagination to now, rate-limit backoff,…

Fix intraday puller: timestamp pagination to now, rate-limit backoff,… #57

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install
run: |
pip install -e .
pip install -r requirements-dev.txt
- name: Lint
run: ruff check .
- name: Format check
run: ruff format --check .
- name: Type check
run: mypy
- name: Tests
run: pytest