File tree 2 files changed +16
-10
lines changed 2 files changed +16
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : Set up pandas
2
+ description : Runs all the setup steps required to have a built pandas ready to use
3
+ runs :
4
+ using : composite
5
+ steps :
6
+ - name : Setting conda path
7
+ run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
8
+ shell : bash -l {0}
9
+
10
+ - name : Setup environment and build pandas
11
+ run : ci/setup_env.sh
12
+ shell : bash -l {0}
Original file line number Diff line number Diff line change @@ -100,14 +100,11 @@ jobs:
100
100
runs-on : ubuntu-latest
101
101
steps :
102
102
103
- - name : Setting conda path
104
- run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
105
-
106
103
- name : Checkout
107
104
uses : actions/checkout@v1
108
105
109
- - name : Setup environment and build pandas
110
- run : ci/setup_env.sh
106
+ - name : Set up pandas
107
+ uses : ./.github/actions/setup
111
108
112
109
- name : Build website
113
110
run : |
@@ -144,14 +141,11 @@ jobs:
144
141
runs-on : ubuntu-latest
145
142
steps :
146
143
147
- - name : Setting conda path
148
- run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
149
-
150
144
- name : Checkout
151
145
uses : actions/checkout@v1
152
146
153
- - name : Setup environment and build pandas
154
- run : ci/setup_env.sh
147
+ - name : Set up pandas
148
+ uses : ./.github/actions/setup
155
149
156
150
- name : Run tests
157
151
run : |
You can’t perform that action at this time.
0 commit comments