Eventual fix for curio #76
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.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install setuptools | |
- name: GitHub action for pytest | |
uses: cclauss/GitHub-Action-for-pytest@master | |
with: | |
args: | | |
python setup.py --verbose develop && | |
python -m pytest -sv |