Spur rosalie #5
This file contains 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: Shell Scripts Unit Testing | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
testing_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9.13 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9.13 | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
- name: Install Pytest dependencies | |
run: | | |
python -m pip install pytest | |
python -m pip install -e xperimental-data-conv | |
- name: Test with pytest | |
run: | | |
cd ./xperimental-data-conv | |
python -m pytest -vv -s |