Fix generator component ordering #1
Workflow file for this run
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 pull request tasks | |
| on: | |
| pull_request: | |
| jobs: | |
| run_tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install build tools | |
| run: pip install .[build] | |
| - name: Check build version | |
| run: python3 -m setuptools_scm | |
| - name: Build wheel | |
| run: python -m build | |
| - name: Check wheel | |
| run: | | |
| pip install twine | |
| twine check dist/* | |
| - name: Install built wheel | |
| run: pip install dist/*.whl | |
| - name: Install maintainer requirements for testing | |
| run: pip install .[maintainer] | |
| - name: Run tests | |
| run: pytest |