Skip to content

feature: add strategy pattern to send different notification (email, … #8

feature: add strategy pattern to send different notification (email, …

feature: add strategy pattern to send different notification (email, … #8

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pytest
working-directory: ./app
env:
ACCESS_TOKEN_EXPIRE_MINUTES: "30"
run: |
pytest