Merge pull request #212 from ISISComputingGroup/Fix_define_genie_python #151
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: Push Event Workflow | |
| on: push | |
| jobs: | |
| unit-testing: | |
| runs-on: windows-latest | |
| steps: | |
| - name : Checkout code | |
| uses : actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r ./installation_and_upgrade/requirements.txt | |
| - name : Run tests | |
| working-directory: ./installation_and_upgrade | |
| run: | | |
| pip install pytest | |
| python -m pytest |