seperating matching functions into its own module (#20) #52
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: unit tests check | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:13 | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_PASSWORD: pw | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install '.[dev]' | |
- name: Wait for PostgreSQL to be ready | |
run: | | |
until pg_isready -h localhost -U postgres; do sleep 1; done | |
- name: Run unit tests | |
env: | |
DB_URI: "postgresql+psycopg2://postgres:pw@localhost:5432/postgres" | |
run: | | |
pytest --cov=recordlinker --cov-report=xml tests/unit |