Skip to content

Store only notification id in the payload for lockable notifications #25

Store only notification id in the payload for lockable notifications

Store only notification id in the payload for lockable notifications #25

Workflow file for this run

name: Unit Tests
on: [pull_request]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Start docker container
run: docker compose up -d app
- name: Copy root pyproject.toml file
run: docker compose cp pyproject.toml app:app/pyproject.toml
- name: Run tests using bob container
run: docker compose exec -T app pytest
- name: Check that the help command is working properly
run: docker compose exec -T app python manage.py listen -h
- name: Stop containers
run: docker compose down