We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 042c867 commit 84b552aCopy full SHA for 84b552a
.github/workflows/multiplatform_build.yaml
@@ -107,3 +107,14 @@ jobs:
107
with:
108
name: build-${{ github.sha }}-${{ matrix.os }}-${{ matrix.python-version }}
109
path: ./dist/*
110
+
111
+ - if: startsWith(matrix.os, 'ubuntu')
112
+ name: Add virtual environment binaries to PATH
113
+ run: echo echo "$(poetry env info --path)/bin" >> "$GITHUB_PATH
114
115
+ - if: startsWith(matrix.os, 'windows')
116
117
+ run: echo echo "$(poetry env info --path)/Scripts" >> "$GITHUB_PATH
118
119
+ - name: Run unit tests
120
+ run: poetry run poe ctest
0 commit comments