Bump shimataro/ssh-key-action from 2.7.0 to 2.8.1 #2703
This file contains hidden or 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # 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" |