Skip to content

feat: initial Python SDK for ipdata.info (v0.1.0) #1

feat: initial Python SDK for ipdata.info (v0.1.0)

feat: initial Python SDK for ipdata.info (v0.1.0) #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -e .
- run: python -m unittest discover -s tests -t . -v
- name: Live smoke test
run: IPDATA_LIVE=1 python -m unittest discover -s tests -t . -v -k test_live_lookup