update deps(deps): bump the python-packages group with 3 updates #56
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: xmlable pr check | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Hatch | |
run: pipx install hatch | |
- name: Test | |
run: hatch run check:test | |
- name: Typecheck | |
run: hatch run check:typecheck | |
- name: Lint | |
run: hatch run check:lint | |
- name: Regenerate Examples | |
run: hatch run auto:examplegen | |
- name: Check Changes | |
id: check-changes | |
uses: mskri/[email protected] | |
- name: Show changes | |
if: steps.check-changes.outputs.changes != '' | |
run: | | |
echo "After regenerating examples there are changes, please commit updated examples" | |
exit 1 | |
- name: Build | |
run: hatch build |