Skip to content

Add webhook support #158

Add webhook support

Add webhook support #158

name: Make sure Debug mode is OFF!
on: [pull_request]
jobs:
is-debug-off:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.11 ]
steps:
- uses: actions/checkout@v3
- name: "Upgrade pip"
run: "pip install --upgrade pip"
- name: "Install package"
run: pip install ".[dev]"
- name: "Your PR is not running in debug mode"
run: cd src && python3 -c "import meshdb.settings; assert meshdb.settings.DEBUG == False"