Enhance Local State Management with Instant Feedback via Client-Side Input Tag #109
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: check-generated-pyi | |
on: | |
push: | |
branches: [ "main" ] | |
# We don't just trigger on pyi_generator.py and the components dir, because | |
# there are other things that can change the generator output | |
# e.g. black version, nextpy.Component, nextpy.Var. | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
check-generated-pyi-components: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup_build_env | |
with: | |
python-version: "3.11.5" | |
run-poetry-install: true | |
create-venv-at-path: .venv | |
- run: | | |
poetry run python scripts/pyi_generator.py | |
if git diff; then | |
echo "No diffs - AOK!" | |
else | |
echo "ERROR: pyi_generator.py output is out of date. Please run scripts/pyi_generator.py and commit the changes." | |
fi |