This repository was archived by the owner on Apr 13, 2026. It is now read-only.
Docker Compose and README for local stack #52
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: Sandbox Integration Test | |
| on: | |
| push: | |
| branches: [main, deploy] | |
| pull_request: | |
| branches: [main, deploy] | |
| workflow_dispatch: | |
| jobs: | |
| slicks-sensor-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install slicks | |
| run: pip install "slicks>=0.2.1" | |
| - name: Discover sensors for September 2025 | |
| env: | |
| INFLUX_URL: ${{ secrets.INFLUX_URL }} | |
| INFLUX_TOKEN: ${{ secrets.INFLUX_TOKEN }} | |
| INFLUX_DB: ${{ secrets.INFLUX_DB }} | |
| run: python dev-utils/ci/slicks-sensor-check.py |