Skip to content

feat(locations): add extra filter by osm_address_city #293

feat(locations): add extra filter by osm_address_city

feat(locations): add extra filter by osm_address_city #293

Workflow file for this run

name: Open Prices unit and integration tests
on:
push:
paths:
- "**/app/**"
- "pyproject.toml"
- "poetry.lock"
- "tests/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
steps:
#----------------------------------------------
# check-out repo
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
#----------------------------------------------
# Launch checks and tests
#----------------------------------------------
- name: Configure docker
run: |
# ensure a new line for .env file might not have it!
echo "" >> .env
# align user id
echo "USER_UID=$UID" >> .env
echo "PYTHON_VERSION=${{ matrix.python-version }}" >> .env
# Use dev compose file to build the image locally (instead of pulling image)
echo "COMPOSE_PATH_SEPARATOR=;" >> .env
echo "COMPOSE_FILE=docker-compose.yml;docker/dev.yml" >> .env
- name: Launch tests
run: make tests