We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 920d8e7 commit a9b20f6Copy full SHA for a9b20f6
1 file changed
.github/workflows/ci.yml
@@ -19,10 +19,11 @@ jobs:
19
with:
20
python-version: 3.x
21
- run: pip install --upgrade pip
22
+ # TODO: Always fails even with $PYTHON_LIBRT defined!
23
+ # When the local pip install fails, install from PyPI
24
- env:
25
PYTHON_LIBRT: "amd64" # "x64"
- run: pip install --editable . || true # TODO: Always fails even with $PYTHON_LIBRT defined!
- - run: pip install lunatic-python-universal # Workaround: Install from PyPI
26
+ run: pip install --editable . || pip install lunatic-python-universal
27
- shell: python # Sanity check
28
run: |
29
import lua
0 commit comments