Skip to content

Merge pull request #40 from Doist/goncalossilva/consistent-dst-exclusion #87

Merge pull request #40 from Doist/goncalossilva/consistent-dst-exclusion

Merge pull request #40 from Doist/goncalossilva/consistent-dst-exclusion #87

Workflow file for this run

name: Tests
on:
- push
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9, '3.10']
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install -E geoip
wget -q https://github.com/maxmind/MaxMind-DB/raw/main/test-data/GeoIP2-City-Test.mmdb
- name: Test with tox
run: poetry run tox