File tree Expand file tree Collapse file tree 2 files changed +17
-16
lines changed Expand file tree Collapse file tree 2 files changed +17
-16
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
+
9
+ - name : Checkout
10
+ uses : actions/checkout@v1
11
+
12
+ - name : Setup environment and build pandas
13
+ run : ci/setup_env.sh
Original file line number Diff line number Diff line change @@ -100,14 +100,8 @@ 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
- - name : Checkout
107
- uses : actions/checkout@v1
108
-
109
- - name : Setup environment and build pandas
110
- run : ci/setup_env.sh
103
+ - name : Set up pandas
104
+ uses : .github/actions/setup
111
105
112
106
- name : Build website
113
107
run : |
@@ -144,14 +138,8 @@ jobs:
144
138
runs-on : ubuntu-latest
145
139
steps :
146
140
147
- - name : Setting conda path
148
- run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
149
-
150
- - name : Checkout
151
- uses : actions/checkout@v1
152
-
153
- - name : Setup environment and build pandas
154
- run : ci/setup_env.sh
141
+ - name : Set up pandas
142
+ uses : .github/actions/setup
155
143
156
144
- name : Run tests
157
145
run : |
You can’t perform that action at this time.
0 commit comments