Skip to content

chore: ignore .ipynb to keep demo notebooks out of the repo #6

chore: ignore .ipynb to keep demo notebooks out of the repo

chore: ignore .ipynb to keep demo notebooks out of the repo #6

Workflow file for this run

name: Unit test
on: [push, pull_request]
jobs:
unit_test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
env:
IP_GEOLOCATION_API_KEY: ${{ secrets.API_KEY }}
steps:
- uses: actions/checkout@v2
- name: Install dependencies, and python_core module
run: |
pip3 install -r requirements.txt
python setup.py install --user
- name: Run test
run: |
python3 -m unittest tests/test_python_ip_geolocation.py