fix: protect interval and hysteresis #18
Workflow file for this run
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: build | |
on: | |
push: | |
schedule: | |
# Build every Saturday at 4:30pm | |
- cron: 30 16 * * 6 | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Pre-commit (all files) | |
run: | | |
pip install --upgrade pip | |
pip install poetry==1.7.1 | |
poetry export --without-hashes --with dev --output requirements.txt | |
pip install --requirement requirements.txt | |
pre-commit run --all-files |