Add "Fiber Connected Hub" and Map Display Override Options #1881
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Make sure Debug mode is OFF! | |
on: [pull_request] | |
permissions: read-all | |
jobs: | |
is-debug-off: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- 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" |