File tree Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -92,23 +92,44 @@ jobs:
92
92
with :
93
93
fetch-depth : 1
94
94
95
+ - uses : conda-incubator/setup-miniconda@v2
96
+ with :
97
+ activate-environment : test
98
+ python-version : ${{ matrix.python }}
99
+
95
100
- uses : ruby/setup-ruby@v1
96
101
if : matrix.ruby_version != 'master-nightly'
97
102
with :
98
103
ruby-version : ${{ matrix.ruby }}
99
104
100
- - uses : s-weigand/setup-conda@v1
101
- with :
102
- python-version : ${{ matrix.python }}
105
+ - name : Add Ruby path
106
+ run : |
107
+ echo >> ~/.profile
108
+ echo >> ~/.profile
109
+ IFS=:
110
+ for p in $PATH; do
111
+ case $p in
112
+ */Ruby/*)
113
+ echo "export PATH=$p:\$PATH" >> ~/.profile
114
+ ;;
115
+ esac
116
+ done
117
+
118
+ - run : cat ~/.profile
119
+
120
+ - run : bash -xe ~/.profile
103
121
104
122
- run : conda install numpy
123
+ shell : bash -l {0}
105
124
106
125
- run : bundle install
107
126
108
127
- run : rake compile
109
128
110
129
- run : python lib/pycall/python/investigator.py
130
+ shell : bash -l {0}
111
131
112
132
- run : rake
113
133
env :
114
134
PYTHON : python
135
+ shell : bash -l {0}
You can’t perform that action at this time.
0 commit comments