Fix for pipeline push #68
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: Install Python3-dev | |
run: sudo apt-get update && sudo apt-get install -y python3-dev && python3 -m pip install -U pip setuptools | |
- uses: actions/checkout@master | |
- name: GitHub action for pytest | |
uses: cclauss/GitHub-Action-for-pytest@master | |
with: | |
args: python3 setup.py --verbose develop && pytest -sv |