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 c01475a commit eabfa8aCopy full SHA for eabfa8a
.github/workflows/freeze.yaml
@@ -29,13 +29,17 @@ jobs:
29
source venv/bin/activate
30
pip install robotframework cx_Freeze
31
python setup_basic.py build || true
32
+ - name: basic_run
33
+ run: |
34
./build/*/robot_run_basic ../examples/basic/
35
36
- name: numpy
37
run: |
38
cd cx_Freeze
- python -m venv venv
39
+ python3 -m venv venv
40
41
pip install robotframework cx_Freeze pandas numpy
- python setup_numpy.py build || true
- ./build/*/robot_run_basic ../examples/numpy/
42
+ python setup_numpy.py build
43
+ - name: numpy_run
44
45
+ ./build/*/robot_run_numpy ../examples/numpy/
0 commit comments