diff --git a/.github/workflows/Python.yml b/.github/workflows/Python.yml index 3b6bb0df4..9329fb6fc 100644 --- a/.github/workflows/Python.yml +++ b/.github/workflows/Python.yml @@ -26,6 +26,12 @@ jobs: python -m pip install --upgrade pip pip install pytest pandas scipy h5py vtk matplotlib pyyaml + - name: Strip git hash (Unix) + if: runner.os != 'Windows' + run: | + export VERSION=$(cat VERSION) + echo ${VERSION%-*} > VERSION + - name: Install and run unit tests (Unix) if: runner.os != 'Windows' run: |