Merge pull request #3074 from ASFHyP3/dependabot/pip/pytest-9.0.3 #9800
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 tests | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| env: | |
| SETUPTOOLS_SCM_PRETEND_VERSION_FOR_HYP3: v0.0.0 | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - run: | | |
| python -m pip install --upgrade pip | |
| make install | |
| - name: run pytest | |
| run: make tests |