From dd0be23099c619ebc85e64bb3da86e4dd4a2a119 Mon Sep 17 00:00:00 2001 From: Irfan Alibay Date: Thu, 25 Jul 2024 20:14:16 +0100 Subject: [PATCH] Update gpu-runner.yaml --- .github/workflows/gpu-runner.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gpu-runner.yaml b/.github/workflows/gpu-runner.yaml index 3463115f0..ff2229c46 100644 --- a/.github/workflows/gpu-runner.yaml +++ b/.github/workflows/gpu-runner.yaml @@ -50,22 +50,27 @@ jobs: - name: "Install GUFE from main@HEAD" run: python -m pip install --no-deps git+https://github.com/OpenFreeEnergy/gufe@main + shell: bash -el {0} - name: "Install" run: python -m pip install --no-deps -e . + shell: bash -el {0} - name: "Test imports" + shell: bash -el {0} run: | # if we add more to this, consider changing to for + env vars - python -Ic "import openfe; print(openfe.__version__)" + python -Ic "import openfe; print(openfe.__version__)" - name: "Environment Information" + shell: bash -el {0} run: | micromamba info micromamba list pip list - name: "Run tests" + shell: bash -el {0} env: # Set the OFE_SLOW_TESTS to True if running a Cron job OFE_SLOW_TESTS: "true"