Add address normalization automation #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install test dependencies | |
run: | | |
python -m pip install --upgrade pip wheel setuptools | |
pip install -r requirements-dev.txt | |
- name: Run core tests | |
run: | | |
pip install . | |
pytest -vv . | |
working-directory: ./core | |
- name: Run API tests | |
run: | | |
pip install ../core | |
pip install -r requirements.txt | |
pytest -vv . | |
working-directory: ./app |