Skip to content

add another webhook #95

add another webhook

add another webhook #95

Workflow file for this run

name: Tests
on: [push]
defaults:
run:
working-directory: happiness-backend
jobs:
tests:
name: Run pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ENCRYPT_SALT: ${{ secrets.ENCRYPT_SALT }}
REDISCLOUD_URL: ${{ secrets.REDISCLOUD_URL }}