draft set temp and humidity actions #42
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: Pre-Commit Checks | |
| on: | |
| push: # Run for every push | |
| branches: ["*"] | |
| tags: ["*"] | |
| workflow_dispatch: # Run manually | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Checkout code | |
| - uses: actions/setup-python@v4 | |
| name: Setup Python | |
| with: | |
| python-version: 3.9 | |
| - uses: pre-commit/action@v3.0.1 | |
| name: Run Pre-Commit Checks |