Skip to content

fix: ipdate pypi badge #33

fix: ipdate pypi badge

fix: ipdate pypi badge #33

Workflow file for this run

name: pytest
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
PYTHON_VERSION: 3.x
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python runtime
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip pytest build
pip install -r requirements.txt
pip install .
- name: Run tests
run: pytest