Add daily min/max to spread chart #15
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: Run pre-commit hooks | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| env: | |
| DEFAULT_PYTHON: "3.13" | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵️ Check out code from GitHub | |
| uses: actions/checkout@v6.0.2 | |
| - name: 🏗 Set up Node.js | |
| uses: actions/setup-node@v6.2.0 | |
| with: | |
| node-version: 24 | |
| - name: 🏗 Install NPM dependencies | |
| run: npm install | |
| - name: 🏗 Set up Python ${{ env.DEFAULT_PYTHON }} | |
| id: python | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: 🚀 Run pre-commit hooks | |
| uses: pre-commit/action@v3.0.1 |