Skip to content

Commit eabfa8a

Browse files
committed
- split run from build
1 parent c01475a commit eabfa8a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/freeze.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,17 @@ jobs:
2929
source venv/bin/activate
3030
pip install robotframework cx_Freeze
3131
python setup_basic.py build || true
32+
- name: basic_run
33+
run: |
3234
./build/*/robot_run_basic ../examples/basic/
3335
3436
- name: numpy
3537
run: |
3638
cd cx_Freeze
37-
python -m venv venv
39+
python3 -m venv venv
3840
source venv/bin/activate
3941
pip install robotframework cx_Freeze pandas numpy
40-
python setup_numpy.py build || true
41-
./build/*/robot_run_basic ../examples/numpy/
42+
python setup_numpy.py build
43+
- name: numpy_run
44+
run: |
45+
./build/*/robot_run_numpy ../examples/numpy/

0 commit comments

Comments
 (0)