Skip missing temperature adjustment values #1009
Workflow file for this run
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: "CodeQL, black, flake8 checks, and tests" | |
| on: | |
| push: | |
| # Run on all branches | |
| branches: | |
| - '**' | |
| # Run on any file change | |
| paths: | |
| - '**/*.py' | |
| pull_request: | |
| # Run on all branches | |
| branches: | |
| - '**' | |
| # Run on any file change | |
| paths: | |
| - '**/*.py' | |
| jobs: | |
| analyse: | |
| name: Analyze using GitHub CodeQL | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python environment | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: python | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 | |
| - name: Perform black lint check | |
| # uses: psf/black@stable | |
| uses: psf/black@25.1.0 | |
| - name: Perform flake8 lint check | |
| uses: py-actions/flake8@v2 | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python environment | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pytest pyserial | |
| - name: Run tests | |
| run: pytest |