Eventual fix for curio #77
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
on: push | |
name: TestOnPush | |
jobs: | |
gitHubActionForPytest: | |
name: Run PyTest on Push | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.7" | |
- name: GitHub action for pytest | |
uses: cclauss/GitHub-Action-for-pytest@27a4d0abb | |
with: | |
args: | | |
python3 -m pip install setuptools && | |
python3 setup.py --verbose develop && | |
pytest -sv |