Skip to content

load contacts when contact is created or updated #20

load contacts when contact is created or updated

load contacts when contact is created or updated #20

Workflow file for this run

name: Tests Runner
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- name: Get the code
uses: actions/checkout@v3
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: 'pipenv'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pipenv
python -m venv .venv
source .venv/bin/activate
pipenv install --deploy --dev
- name: Test the Project
run: pytest