This repository was archived by the owner on Jul 16, 2025. It is now read-only.
React 19 + Reflex 0.7.1 fixes #4
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 | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| pre-commit: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.12" | |
| - run: | | |
| pip install pre-commit | |
| pip install pyright | |
| pre-commit run --all-files | |
| env: | |
| SKIP: update-pyi-files |